Don't need the nvim nix file any more, too small
This commit is contained in:
parent
e371b17b7d
commit
9c28dc3048
2 changed files with 11 additions and 25 deletions
15
home-cli.nix
15
home-cli.nix
|
|
@ -14,10 +14,6 @@ in
|
||||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [
|
|
||||||
./home-nvim.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
supabase-cli
|
supabase-cli
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
|
|
@ -57,6 +53,10 @@ in
|
||||||
stylelint
|
stylelint
|
||||||
js-beautify
|
js-beautify
|
||||||
intelephense
|
intelephense
|
||||||
|
vscode-langservers-extracted
|
||||||
|
elixir-ls
|
||||||
|
lua-language-server
|
||||||
|
tree-sitter
|
||||||
dict
|
dict
|
||||||
ispell
|
ispell
|
||||||
aspell
|
aspell
|
||||||
|
|
@ -270,4 +270,11 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
keys = [ "id_rsa" "id_rsa_mr" "2B3A6377" ];
|
keys = [ "id_rsa" "id_rsa_mr" "2B3A6377" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
viAlias = true;
|
||||||
|
vimAlias = true;
|
||||||
|
};
|
||||||
|
xdg.configFile."nvim/init.lua".source = ./init.lua;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.neovim = {
|
|
||||||
enable = true;
|
|
||||||
viAlias = true;
|
|
||||||
vimAlias = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.configFile."nvim/init.lua".source = ./init.lua;
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
# LSP servers (others already in home-cli.nix: nixd, typescript-language-server, intelephense)
|
|
||||||
vscode-langservers-extracted # eslint, html, css, json
|
|
||||||
elixir-ls
|
|
||||||
lua-language-server
|
|
||||||
|
|
||||||
# Treesitter parser compilation
|
|
||||||
tree-sitter
|
|
||||||
];
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue