split config
This commit is contained in:
4
default_theme/colors.lua
Normal file
4
default_theme/colors.lua
Normal file
@@ -0,0 +1,4 @@
|
||||
return {
|
||||
fg = "#abb2bf",
|
||||
bg = "#1e222a",
|
||||
}
|
13
default_theme/highlights.lua
Normal file
13
default_theme/highlights.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return function(hl) -- or a function that returns a new table of colors to set
|
||||
local C = require "default_theme.colors"
|
||||
|
||||
hl.Normal = { fg = C.fg, bg = C.bg }
|
||||
|
||||
-- New approach instead of diagnostic_style
|
||||
hl.DiagnosticError.italic = true
|
||||
hl.DiagnosticHint.italic = true
|
||||
hl.DiagnosticInfo.italic = true
|
||||
hl.DiagnosticWarn.italic = true
|
||||
|
||||
return hl
|
||||
end
|
21
default_theme/plugins.lua
Normal file
21
default_theme/plugins.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
return {
|
||||
aerial = true,
|
||||
beacon = false,
|
||||
bufferline = true,
|
||||
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,
|
||||
}
|
Reference in New Issue
Block a user