migrate over neovim config

This commit is contained in:
insects 2024-08-03 22:33:30 +02:00
parent 92c57d8825
commit f581832953
18 changed files with 535 additions and 102 deletions

View file

@ -0,0 +1,17 @@
-- Set up elixir-tools.nvim for better Elixir support
return {
{
"elixir-tools/elixir-tools.nvim",
event = { "BufReadPre", "BufNewFile" },
config = function()
local elixir = require("elixir")
elixir.setup({
elixirls = {
enable = false, -- handle elixirls through mason
},
})
end,
},
}