Fixing lsp

This commit is contained in:
Chris
2025-07-24 14:27:38 +01:00
parent 2dc48b5b4c
commit 278f31d4ea
3 changed files with 191 additions and 203 deletions

View File

@@ -9,6 +9,11 @@ helpers.edit_cf = function(map, path)
end, { desc = 'Edit ' .. path .. ' in a new tab' })
end
helpers.map = function(keys, func, opts, mode)
mode = mode or 'n'
vim.keymap.set(mode, keys, func, opts)
end
helpers.edit_cf('h', '/lua/helpers.lua')
return helpers