From 5a93e3dd9c3d60bdbbe2148f872af7df9aae609b Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Tue, 24 Jan 2023 20:27:55 -0500 Subject: [PATCH] refactor: remove astronvim_theme options --- astronvim_theme/colors.lua | 5 ----- astronvim_theme/highlights.lua | 11 ----------- astronvim_theme/plugins.lua | 22 ---------------------- 3 files changed, 38 deletions(-) delete mode 100644 astronvim_theme/colors.lua delete mode 100644 astronvim_theme/highlights.lua delete mode 100644 astronvim_theme/plugins.lua diff --git a/astronvim_theme/colors.lua b/astronvim_theme/colors.lua deleted file mode 100644 index 2355391..0000000 --- a/astronvim_theme/colors.lua +++ /dev/null @@ -1,5 +0,0 @@ --- Modify the color palette for the default theme -return { - fg = "#abb2bf", - bg = "#1e222a", -} diff --git a/astronvim_theme/highlights.lua b/astronvim_theme/highlights.lua deleted file mode 100644 index 80e715e..0000000 --- a/astronvim_theme/highlights.lua +++ /dev/null @@ -1,11 +0,0 @@ -local C = require "astronvim_theme.colors" --- modify the astronvim colors of the astronvim colorscheme directly when it's created -return { - Normal = { fg = C.fg, bg = C.bg }, - - -- customize styles of highlight groups - -- DiagnosticError = { italic = true }, - -- DiagnosticHint = { italic = true }, - -- DiagnosticInfo = { italic = true }, - -- DiagnosticWarn = { italic = true }, -} diff --git a/astronvim_theme/plugins.lua b/astronvim_theme/plugins.lua deleted file mode 100644 index f45adaa..0000000 --- a/astronvim_theme/plugins.lua +++ /dev/null @@ -1,22 +0,0 @@ --- enable or disable highlighting for extra plugins in the astronvim theme -return { - aerial = true, - beacon = false, - bufferline = false, - cmp = true, - dashboard = true, - highlighturl = true, - hop = false, - indent_blankline = true, - lightspeed = false, - ["neo-tree"] = true, - notify = true, - ["nvim-tree"] = false, - ["nvim-web-devicons"] = true, - rainbow = true, - symbols_outline = false, - telescope = true, - treesitter = true, - vimwiki = false, - ["which-key"] = true, -}