summaryrefslogtreecommitdiffstats
path: root/vim.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vim.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/vim.nix b/vim.nix
index c496418..0c58e42 100644
--- a/vim.nix
+++ b/vim.nix
@@ -1,17 +1,14 @@
{
config,
pkgs,
-
customNeovim,
...
-}:
-{
-
+}: {
environment.systemPackages = with pkgs; [
(lib.lowPrio pkgs.vim-full) # Lower Vim's priority
(pkgs.writeShellApplication {
name = "vi";
- runtimeInputs = [ pkgs.nvi ];
+ runtimeInputs = [pkgs.nvi];
text = ''
exec ${pkgs.nvi}/bin/vi "$@"
'';
@@ -123,5 +120,4 @@
# '';
# };
# };
-
}