nvim bump + switch from packer -> lazy

This commit is contained in:
agryphus 2024-12-11 14:54:20 -05:00
parent cc99d55125
commit c28dd3e9a9
12 changed files with 209 additions and 203 deletions

View file

@ -1,11 +1,11 @@
require("which-key").setup({
window = {
win = {
border = "single", -- none, single, double, shadow
position = "bottom", -- bottom, top
margin = { 0, 0, 0, 0 }, -- extra window margin [top, right, bottom, left]. When between 0 and 1, will be treated as a percentage of the screen size.
padding = { 0, 2, 0, 2 }, -- extra window padding [top, right, bottom, left]
winblend = 0, -- value between 0-100 0 for fully opaque and 100 for fully transparent
padding = { 0, 0, 0, 0 }, -- extra window padding [top, right, bottom, left]
zindex = 1000, -- positive value to position WhichKey above other floating windows.
wo = {
winblend = 0, -- value between 0-100 0 for fully opaque and 100 for fully transparent
},
},
layout = {
height = { min = 4, max = 25 }, -- min and max height of the columns
@ -14,3 +14,4 @@ require("which-key").setup({
align = "left", -- align columns left, center or right
},
})