add zoeys.computer!!
This commit is contained in:
parent
25633db3cf
commit
11b4270c0b
4 changed files with 36 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
31
modules/home/apps/tools/neovim/config/lua/plugins/elixir.lua
Normal file
31
modules/home/apps/tools/neovim/config/lua/plugins/elixir.lua
Normal 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",
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue