feat: add nvim dotfiles (try to)

This commit is contained in:
Xavier Morel
2025-07-03 19:20:24 +02:00
parent 39c7b58406
commit b277619e48
16 changed files with 632 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
--
return {
"neovim/nvim-lspconfig",
opts = {
setup = {
rust_analyzer = function()
return true
end,
},
},
}