Astronvim config from kabinspace/AstroNvim_user

This commit is contained in:
Ismo Vuorinen
2023-02-13 15:55:27 +02:00
parent f502b5458f
commit b1d979df34
33 changed files with 1646 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
-- Modify the color palette for the default theme
return function(hl)
local C = require "default_theme.colors"
hl.Normal = { fg = C.fg, bg = C.bg }
hl.DiagnosticError.bold = true
hl.DiagnosticHint.bold = true
hl.DiagnosticInfo.bold = true
hl.DiagnosticWarn.bold = true
return hl
end

17
default_theme/plugins.lua Normal file
View File

@@ -0,0 +1,17 @@
-- enable or disable highlighting for extra plugins
return {
aerial = true,
bufferline = true,
cmp = true,
dashboard = true,
highlighturl = true,
indent_blankline = true,
["neo-tree"] = true,
notify = true,
["nvim-web-devicons"] = true,
rainbow = true,
telescope = true,
treesitter = true,
vimwiki = false,
["which-key"] = true,
}