modular plugins
This commit is contained in:
parent
2cbdb13009
commit
1207bdfaff
19 changed files with 1044 additions and 1228 deletions
14
lua/plugin-configs/lazy-dev.lua
Normal file
14
lua/plugin-configs/lazy-dev.lua
Normal 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' } },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue