add zoeys.computer!!
This commit is contained in:
parent
25633db3cf
commit
11b4270c0b
4 changed files with 36 additions and 0 deletions
|
|
@ -101,6 +101,8 @@
|
||||||
|
|
||||||
zen-browser.url = "github:MarceColl/zen-browser-flake";
|
zen-browser.url = "github:MarceColl/zen-browser-flake";
|
||||||
|
|
||||||
|
zoeycomputer.url = "git+https://git.zoeys.computer/zoey/zoeys.computer";
|
||||||
|
|
||||||
systems.url = "github:nix-systems/default";
|
systems.url = "github:nix-systems/default";
|
||||||
spicetify-nix = {
|
spicetify-nix = {
|
||||||
url = "github:Gerg-L/spicetify-nix";
|
url = "github:Gerg-L/spicetify-nix";
|
||||||
|
|
@ -146,6 +148,7 @@
|
||||||
blog.nixosModule
|
blog.nixosModule
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
solaar.nixosModules.default
|
solaar.nixosModules.default
|
||||||
|
zoeycomputer.nixosModules.default
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@
|
||||||
"lazyvim.plugins.extras.lang.sql",
|
"lazyvim.plugins.extras.lang.sql",
|
||||||
"lazyvim.plugins.extras.lang.svelte",
|
"lazyvim.plugins.extras.lang.svelte",
|
||||||
"lazyvim.plugins.extras.lang.tailwind",
|
"lazyvim.plugins.extras.lang.tailwind",
|
||||||
|
"lazyvim.plugins.extras.lang.elixir",
|
||||||
"lazyvim.plugins.extras.lang.tex",
|
"lazyvim.plugins.extras.lang.tex",
|
||||||
"lazyvim.plugins.extras.lang.typescript",
|
"lazyvim.plugins.extras.lang.typescript",
|
||||||
"lazyvim.plugins.extras.test.core",
|
"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",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
@ -48,6 +48,7 @@
|
||||||
map.enable = true;
|
map.enable = true;
|
||||||
hydra.enable = true;
|
hydra.enable = true;
|
||||||
cache.enable = true;
|
cache.enable = true;
|
||||||
|
zoeycomputer.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
zmio.blog.enable = true;
|
zmio.blog.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue