Refactor plugin layout, add AI autocomplete and direnv, update docs

This commit is contained in:
RingOfStorms (Joshua Bell) 2026-01-22 16:54:45 -06:00
parent 3517caecde
commit cc9a5dc0f5
20 changed files with 1195 additions and 414 deletions

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

@ -0,0 +1,12 @@
-- lazydev.nvim - Faster Lua/Neovim development
-- Replaces neodev.nvim (which is archived)
return {
"folke/lazydev.nvim",
ft = "lua",
opts = {
library = {
-- Load luv types when vim.uv is used
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
},
},
}