minor plugin updates

This commit is contained in:
Alexander Navarro 2025-04-07 09:52:21 -04:00
parent 9a07d9c43d
commit 9661cea5d4
4 changed files with 35 additions and 16 deletions

View file

@ -9,4 +9,16 @@ return {
{ "<leader>ls", function() require("ts-node-action").node_action() end, desc = "Node Action" }
}
},
{
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
-- used for completion, annotations and signatures of Neovim apis
'folke/lazydev.nvim',
ft = 'lua',
opts = {
library = {
-- Load luvit types when the `vim.uv` word is found
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
},
},
},
}