refactor: clean up file tree, remove redundant code, formatting

This commit is contained in:
2024-12-20 18:11:06 -05:00
parent daa0aefd21
commit 660afc8411
33 changed files with 418 additions and 447 deletions
+16 -2
View File
@@ -1,13 +1,18 @@
return {
'folke/which-key.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
event = 'VeryLazy',
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
vim.o.timeoutlen = 800
end,
opts = {
preset = 'modern', -- may set this back to 'classic'
sort = { 'local', 'order', 'group', 'alphanum', 'mod' },
sort = { 'local', 'order', 'group', 'case', 'alphanum', 'mod' },
expand = 2,
delay = 200,
notify = true,
win = {
title = true,
@@ -21,6 +26,15 @@ return {
enabled = true,
suggestions = 20,
},
presets = {
operators = true,
motions = true,
text_objects = true,
windows = true,
nav = true,
z = true,
g = true,
},
},
},
}