Add more Neovim plugins and config

This commit is contained in:
Lexi / Zoe 2026-09-01 19:48:28 +02:00
parent 29e053af75
commit b5bd437512
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
5 changed files with 676 additions and 50 deletions

View file

@ -5,6 +5,8 @@ vim.pack.add {
-- { src = 'https://github.com/nickkadutskyi/jb.nvim', name = 'jetbrains-theme' },
}
local dim_inactive_windows = true
-- Initialize and customize themes
require('kanagawa').setup {
-- Compile colorscheme for fast startup times.
@ -12,7 +14,7 @@ require('kanagawa').setup {
compile = true,
-- Dim inactive windows
dimInactive = true,
dimInactive = dim_inactive_windows,
-- Customize colors
colors = {
@ -25,6 +27,18 @@ require('kanagawa').setup {
},
},
},
-- Add or modify highlight groups
overrides = function(colors)
local theme = colors.theme
return {
-- Make window separator more visible
WinSeparator = {
fg = theme.ui.bg_p1, -- default: bg_m3
bg = dim_inactive_windows and theme.ui.bg_dim or "NONE", -- default
},
}
end,
}
--require('rose-pine').setup {}