From f86de5ff5b7929f4d92439232afc62372fe8b4e8 Mon Sep 17 00:00:00 2001 From: NullBite Date: Wed, 19 Feb 2025 14:57:59 -0500 Subject: [PATCH] home(neovim): add gcc to env A compiler is required for the compilation of treesitter grammars. I should probably figure out how to just add every grammar to Neovim, but this works with my existing configuration for now. I'm choosing to keep my config separate because I want to still be able to use it on systems without Nix. --- home/programs/neovim.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/programs/neovim.nix b/home/programs/neovim.nix index dc65743..6429a9f 100644 --- a/home/programs/neovim.nix +++ b/home/programs/neovim.nix @@ -15,6 +15,7 @@ in rust-analyzer vscode-langservers-extracted pyright + gcc ]; }; };