Migrated init.lua into plugin files

This commit is contained in:
Zackarias Montell
2025-12-05 09:54:42 +01:00
parent f0493d2fe2
commit 0121d40df5
22 changed files with 1069 additions and 1131 deletions

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 = '${3rd}/luv/library', words = { 'vim%.uv' } },
},
},
},
}