summaryrefslogtreecommitdiff
path: root/nixos/modules/features/editors/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/editors/default.nix')
-rw-r--r--nixos/modules/features/editors/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/nixos/modules/features/editors/default.nix b/nixos/modules/features/editors/default.nix
deleted file mode 100644
index 5cec5da..0000000
--- a/nixos/modules/features/editors/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ 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
- ];
-}