summaryrefslogtreecommitdiff
path: root/archetypes/collections/neovim.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-02-04 17:23:02 -0600
committerTim Keller <tjk@tjkeller.xyz>2026-02-04 17:23:02 -0600
commit4b78bd78251be480be1e545bbd8e00a3c3458d9c (patch)
tree7f6d381100bd55946a9fcb4fe8334b9afda678ed /archetypes/collections/neovim.nix
parent7ed78af3498211a1fb94d8f861e638c5af96bb2f (diff)
downloadnixos-4b78bd78251be480be1e545bbd8e00a3c3458d9c.tar.xz
nixos-4b78bd78251be480be1e545bbd8e00a3c3458d9c.zip
add unzip for nvim and todo noteHEADmaster
Diffstat (limited to 'archetypes/collections/neovim.nix')
-rw-r--r--archetypes/collections/neovim.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/archetypes/collections/neovim.nix b/archetypes/collections/neovim.nix
index 0c7edbc..16941d4 100644
--- a/archetypes/collections/neovim.nix
+++ b/archetypes/collections/neovim.nix
@@ -14,6 +14,7 @@ in {
# Don't use programs.neovim since that will build neovim from source
environment.systemPackages = with pkgs; [
neovim-aliases
+ # TODO should make the following available to nvim only, not system path
# LSP servers
python313Packages.python-lsp-server
svelte-language-server
@@ -21,5 +22,6 @@ in {
vscode-langservers-extracted
# Misc deps
gcc # Treesitter requires a C compiler
+ unzip # For zip, xlsx, etc. files
];
}