Split config into multiple files based on kickstart.modular

This commit is contained in:
Diego Miguel M. Villamil 2025-05-11 03:27:25 +08:00
parent 62f8ac3e1a
commit 3e6a648ef1
23 changed files with 1254 additions and 1102 deletions

14
lua/plugins/lazydev.lua Normal file
View file

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