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 + ]; }