Update env, packages and fix some scripts

This commit is contained in:
Tobias Reisinger 2023-02-02 23:26:51 +01:00
parent e411075acb
commit 1458d5b334
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
10 changed files with 54 additions and 25 deletions
.config/astronvim/lua/user

View file

@ -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"
},

View file

@ -7,13 +7,4 @@ return {
-- Eye-Candy
{ "dracula/vim" },
{
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup({
show_current_context = true,
show_current_context_start = true,
})
end,
},
}