summaryrefslogtreecommitdiff
path: root/use-cases/development/neovim/default.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-09-06 08:18:38 +0200
committerLinnnus <[email protected]>2023-09-06 08:18:38 +0200
commit17d483c8c8a96fad2200acaf802b7ef0b0eb494d (patch)
treed7807d842accf3730e6f4277d0b2dea00d8a811d /use-cases/development/neovim/default.nix
parent326cf19b227f04cb5fa6291943334f7c91b279d9 (diff)
hej gør lige mere
Diffstat (limited to 'use-cases/development/neovim/default.nix')
-rw-r--r--use-cases/development/neovim/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/use-cases/development/neovim/default.nix b/use-cases/development/neovim/default.nix
deleted file mode 100644
index 5c265b8..0000000
--- a/use-cases/development/neovim/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file contains the HM configuration options for Neovim.
-
-{ pkgs, lib, ... }:
-
-{
- imports =
- [
- ./lsp.nix
- ./filetype.nix
- ];
-
- programs.neovim = {
- enable = true;
-
- # 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!";
-}
-
-# vi: foldmethod=marker