feat(nvim): half-baked migration from lazy.nvim to lz.n + vim.pack

This commit is contained in:
Barrett Ruth 2026-02-28 12:43:26 -05:00
parent 60969865b5
commit 50642823bd
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
30 changed files with 865 additions and 1315 deletions

View file

@ -1,9 +1,11 @@
vim.pack.add({
'https://github.com/nvimdev/guard.nvim',
'https://github.com/nvimdev/guard-collection',
})
return {
'nvimdev/guard.nvim',
dependencies = {
'nvimdev/guard-collection',
},
init = function()
before = function()
vim.g.guard_config = {
fmt_on_save = false,
save_on_fmt = true,
@ -13,7 +15,7 @@ return {
keys = {
{ 'gF', '<cmd>Guard fmt<cr>', mode = { 'n', 'x' } },
},
config = function()
after = function()
local ft = require('guard.filetype')
ft('python')