summaryrefslogtreecommitdiff
path: root/modules/home/nvim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/nvim.nix')
-rw-r--r--modules/home/nvim.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/home/nvim.nix b/modules/home/nvim.nix
deleted file mode 100644
index f715f75..0000000
--- a/modules/home/nvim.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ pkgs, ... }: {
- programs.neovim = {
- enable = true;
- defaultEditor = true;
- viAlias = true;
- vimAlias = true;
-
- plugins = with pkgs.vimPlugins; [
- nvim-treesitter.withAllGrammars
- ];
- };
-}