diff options
Diffstat (limited to 'nixos/modules/features/editors/default.nix')
| -rw-r--r-- | nixos/modules/features/editors/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/features/editors/default.nix b/nixos/modules/features/editors/default.nix index 1570aa3..7f1dd9a 100644 --- a/nixos/modules/features/editors/default.nix +++ b/nixos/modules/features/editors/default.nix @@ -1,10 +1,12 @@ { pkgs, ... }: { + # Text editors / IDEs environment.systemPackages = with pkgs; [ micro neovim (emacs.override { withNativeCompilation = true; }) + # IME input method integration for the Vim/Neovim ecosystem. pkgs.vimPlugins.im-select-nvim ]; }
\ No newline at end of file |
