From d87afd4c75045c62e3fe5948c4a4de782838b17d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chl=C3=B3e=20Kassandra=20Rei=C3=9F?= Date: Tue, 2 Jun 2026 17:48:55 +0200 Subject: [PATCH] Working version --- terminal-environment/editor.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/terminal-environment/editor.nix b/terminal-environment/editor.nix index 89704ec..fe7282b 100644 --- a/terminal-environment/editor.nix +++ b/terminal-environment/editor.nix @@ -6,6 +6,9 @@ in home.packages = with pkgs; [ vim + neovim + neovim-qt + fzf ripgrep ripgrep-all @@ -13,15 +16,12 @@ in lua54Packages.luarocks-nix nixfmt haskellPackages.lsp - ]; - programs.neovim = { - enable = true; - defaultEditor = true; - withPython3 = true; - withRuby = true; - withNodeJs = true; - viAlias = true; - vimAlias = true; - }; + python3 + python3Packages.pynvim + + nodejs + + ruby + ]; }