add zoeys.computer!!

This commit is contained in:
zack 2024-10-21 19:22:59 -04:00
parent 25633db3cf
commit 11b4270c0b
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
4 changed files with 36 additions and 0 deletions

View file

@ -18,6 +18,7 @@
"lazyvim.plugins.extras.lang.sql",
"lazyvim.plugins.extras.lang.svelte",
"lazyvim.plugins.extras.lang.tailwind",
"lazyvim.plugins.extras.lang.elixir",
"lazyvim.plugins.extras.lang.tex",
"lazyvim.plugins.extras.lang.typescript",
"lazyvim.plugins.extras.test.core",

View file

@ -0,0 +1,31 @@
return {
"elixir-tools/elixir-tools.nvim",
version = "*",
event = { "BufReadPre", "BufNewFile" },
config = function()
local elixir = require("elixir")
-- local elixirls = require("elixir.elixirls")
elixir.setup({
nextls = { enable = true },
elixirls = {
enable = false,
-- settings = elixirls.settings({
-- dialyzerEnabled = false,
-- enableTestLenses = false,
-- }),
-- on_attach = function(client, bufnr)
-- vim.keymap.set("n", "<space>fp", ":ElixirFromPipe<cr>", { buffer = true, noremap = true })
-- vim.keymap.set("n", "<space>tp", ":ElixirToPipe<cr>", { buffer = true, noremap = true })
-- vim.keymap.set("v", "<space>em", ":ElixirExpandMacro<cr>", { buffer = true, noremap = true })
-- end,
},
projectionist = {
enable = false,
},
})
end,
dependencies = {
"nvim-lua/plenary.nvim",
},
}