Add more Neovim plugins and config
This commit is contained in:
parent
29e053af75
commit
b5bd437512
5 changed files with 676 additions and 50 deletions
|
|
@ -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 {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue