nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

commit e986bbd6a7593704762796daa1479f7984c371b2
parent 9cc50b9e6af91a165fbac4dabf15d4b17c857241
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Sat, 31 Jul 2021 16:42:58 +1000

sort zsh aliases and also add ssh alias to seem like xterm since a lot of servers dont know what alacritty is

Diffstat:
Mhome/modules/terminal/zsh.nix | 15++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/home/modules/terminal/zsh.nix b/home/modules/terminal/zsh.nix @@ -49,19 +49,20 @@ in }; shellAliases = { - ls = "ls --color=auto"; - l = "ls"; - la = "ls -la"; + die = "shutdown now"; ga = "git add"; gc = "git commit"; gd = "git diff"; gp = "git push"; - gs = "git status"; grep = "grep --color=auto"; - v = config.zsh.editor; - tmux = "tmux -2"; - die = "shutdown now"; + gs = "git status"; idris2 = "rlwrap idris2"; + l = "ls"; + la = "ls -la"; + ls = "ls --color=auto"; + ssh = "TERM=xterm-256color ssh"; + tmux = "tmux -2"; + v = config.zsh.editor; }; sessionVariables = {