diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-12-11 22:00:35 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-12-11 22:00:35 +0530 |
commit | fc657f1d6b28cdeb0a15438fbdf9d0141eb23907 (patch) | |
tree | cf42d333735a3336eb9b91308c57a5efdfc3c086 /common.nix | |
parent | b3d21315cba95bf6f19af3212218a799b78bbdfd (diff) |
common: set EDITOR and VISUAL
Diffstat (limited to 'common.nix')
-rw-r--r-- | common.nix | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -51,6 +51,10 @@ in # system environment = { binsh = "${pkgs.dash}/bin/dash"; + variables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + }; shellAliases = { ls = "ls --color=auto --group-directories-first"; grep = "grep --color=auto"; |