modular plugins

This commit is contained in:
Sayed Abdulmohsen Alhashemi 2025-03-31 03:21:19 +03:00
parent 2cbdb13009
commit 1207bdfaff
19 changed files with 1044 additions and 1228 deletions

View file

@ -0,0 +1,14 @@
return
-- LSP Plugins
{
-- `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' } },
},
},
}