Massive changes!!

This commit is contained in:
2025-04-12 23:49:02 +01:00
parent df042cfac2
commit dd502a800b
31 changed files with 1805 additions and 2250 deletions

12
lua/plugins/lazydev.lua Normal file
View File

@@ -0,0 +1,12 @@
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
-- used for completion, annotations and signatures of Neovim apis
return {
"folke/lazydev.nvim",
ft = "lua",
opts = {
library = {
-- Load luvit types when the `vim.uv` word is found
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
},
},
}