Nvim: optimize config, change colorscheme to kanagawa

This commit is contained in:
Robert Kmieć
2023-03-23 08:56:45 +01:00
parent f1e79ee50e
commit dd12fee249
9 changed files with 64 additions and 243 deletions

View File

@@ -0,0 +1,22 @@
return {
'edluffy/specs.nvim',
config = function()
require('specs').setup{
show_jumps = true,
min_jump = 30,
popup = {
delay_ms = 0, -- delay before popup displays
inc_ms = 10, -- time increments used for fade/resize effects
blend = 10, -- starting blend, between 0-100 (fully transparent), see :h winblend
width = 10,
winhl = "PMenu",
fader = require('specs').linear_fader,
resizer = require('specs').shrink_resizer
},
ignore_filetypes = {},
ignore_buftypes = {
nofile = true,
},
}
end
}