Replaced several plugins with snacks.nvim.

Added zk keybinds.
This commit is contained in:
Gabe Venberg 2025-07-04 18:58:40 +02:00
parent 3bd72ab98f
commit 2553d039fd
11 changed files with 230 additions and 527 deletions

View file

@ -1,4 +1,5 @@
-- TODO: split up the plugins a bit.
-- NOTE: various, non-plugin config
require('myLuaConf.opts_and_keys')
@ -16,21 +17,4 @@ require('lze').register_handlers(require('lzextras').lsp)
require("myLuaConf.plugins")
-- NOTE: obviously, more plugins, but more organized by what they do below
require("myLuaConf.LSPs")
-- NOTE: we even ask nixCats if we included our debug stuff in this setup! (we didnt)
-- But we have a good base setup here as an example anyway!
if nixCats('debug') then
require('myLuaConf.debug')
end
-- NOTE: we included these though! Or, at least, the category is enabled.
-- these contain nvim-lint and conform setups.
if nixCats('lint') then
require('myLuaConf.lint')
end
if nixCats('format') then
require('myLuaConf.format')
end
-- NOTE: I didnt actually include any linters or formatters in this configuration,
-- but it is enough to serve as an example.