Update env, packages and fix some scripts
This commit is contained in:
parent
e411075acb
commit
1458d5b334
10 changed files with 54 additions and 25 deletions
.config/astronvim/lua/user
|
@ -28,7 +28,11 @@ local config = {
|
|||
default_theme = function(highlights) -- or a function that returns one
|
||||
local C = require "default_theme.colors"
|
||||
|
||||
highlights.Normal = { fg = C.fg, bg = C.bg }
|
||||
highlights.Normal = {
|
||||
fg = C.fg,
|
||||
bg = C.bg,
|
||||
ctermbg = None
|
||||
}
|
||||
return highlights
|
||||
end,
|
||||
},
|
||||
|
@ -53,6 +57,10 @@ local config = {
|
|||
-- Configure plugins
|
||||
plugins = {
|
||||
-- All other entries override the setup() call for default plugins
|
||||
indent_blankline = {
|
||||
show_current_context = true,
|
||||
show_current_context_start = false,
|
||||
},
|
||||
notify = {
|
||||
background_colour = "#000000"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue