diff options
author | Shubham Saini <ssaini@fispan.com> | 2023-09-26 17:43:08 +0000 |
---|---|---|
committer | Shubham Saini <ssaini@fispan.com> | 2023-09-26 17:43:08 +0000 |
commit | 33b2569f047c0ea274f036a691110cd1debd459c (patch) | |
tree | 9bf648b6639d9d965232b75e1892d5f774b263e8 /darwin | |
parent | 212a566db27d86019762ad148c3b3f5f3f4ddc44 (diff) |
zsh: exports
Diffstat (limited to 'darwin')
-rw-r--r-- | darwin/home.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/darwin/home.nix b/darwin/home.nix index 518e6bb..eec9c2f 100644 --- a/darwin/home.nix +++ b/darwin/home.nix | |||
@@ -25,7 +25,6 @@ | |||
25 | kubectl | 25 | kubectl |
26 | kubelogin-oidc | 26 | kubelogin-oidc |
27 | terraform | 27 | terraform |
28 | kops | ||
29 | k9s | 28 | k9s |
30 | # gui | 29 | # gui |
31 | zoom-us | 30 | zoom-us |
@@ -44,9 +43,12 @@ | |||
44 | programs.zsh = { | 43 | programs.zsh = { |
45 | enable = true; | 44 | enable = true; |
46 | enableCompletion = true; | 45 | enableCompletion = true; |
47 | #sessionVariables = { | 46 | initExtra = '' |
48 | # PATH = "/etc/profiles/per-user/shubh/bin:$PATH"; | 47 | export PATH="$PATH:$HOME/.bin"; |
49 | #}; | 48 | export VISUAL="nvim" |
49 | export EDITOR="$VISUAL" | ||
50 | export MANPAGER="nvim +Man!" | ||
51 | ''; | ||
50 | shellAliases = { | 52 | shellAliases = { |
51 | ll = "ls -l"; | 53 | ll = "ls -l"; |
52 | v = "nvim"; | 54 | v = "nvim"; |