summaryrefslogtreecommitdiff
path: root/home/neovim/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/neovim/default.nix')
-rw-r--r--home/neovim/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/home/neovim/default.nix b/home/neovim/default.nix
deleted file mode 100644
index f5ace73..0000000
--- a/home/neovim/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file contains the HM configuration options for Neovim.
-{...}: {
- imports = [
- ./completion.nix
- ./editing-plugins.nix
- ];
-
- programs.neovim = {
- enable = true;
-
- # Import my existing config. I've been working on this for years and when
- # my enthusiasm for Nix eventually dies off, I want to take it with me.
- extraConfig = builtins.readFile ./init.vim;
-
- # Typing `vi`, `vim`, or `vimdiff` will also run neovim.
- viAlias = true;
- vimAlias = true;
- vimdiffAlias = true;
- };
-
- # Set Neovim as the default editor.
- home.sessionVariables.EDITOR = "nvim";
- home.sessionVariables.VISUAL = "nvim";
-
- # Use neovim as man pager.
- home.sessionVariables.MANPAGER = "nvim +Man!";
-}