Nvim: update most of the plugins

This commit is contained in:
Robert Kmieć
2024-02-26 12:51:21 +01:00
parent 71f71cb3ce
commit c55b301dc4
34 changed files with 439 additions and 531 deletions

View File

@@ -6,7 +6,7 @@ return {
min_jump = 30,
popup = {
delay_ms = 0, -- delay before popup displays
inc_ms = 10, -- time increments used for fade/resize effects
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",
@@ -18,5 +18,14 @@ return {
nofile = true,
},
}
end
local map = vim.keymap.set
local def = { noremap = true, silent = true }
map('n', 'n', 'n<cmd>lua require("specs").show_specs()<CR>', def)
map('n', 'N', 'N<cmd>lua require("specs").show_specs()<CR>', def)
map('n', '<leader><space>', function()
vim.cmd.noh()
require("specs").show_specs({width = 97, winhl = "Search", delay_ms = 100, inc_ms = 21})
end, def)
end,
enabled = false
}