all repos — nixfiles @ 419e4d201ed661027243d4330439a9f0d5e37d21

System and user configuration, managed by nix and home-manager

zsh: move current aliases to home-manager
Alan Pearce alan@alanpearce.eu
Sat, 05 Oct 2019 22:17:05 +0200
commit

419e4d201ed661027243d4330439a9f0d5e37d21

parent

67aafba55a3bb3a92520e7694ca16776d219c43a

2 files changed, 33 insertions(+), 49 deletions(-)

jump to
M user/modules/zsh.nixuser/modules/zsh.nix
@@ -1,5 +1,10 @@ { config, pkgs, ... }:
 
+let
+  inherit (pkgs) stdenv;
+  lsOptions = if stdenv.isDarwin then "-p" else "-v --group-directories-first";
+  lsIsoDate = if stdenv.isDarwin then "" else "--time-style=long-iso";
+in
 {
   home.file = {
     ".rm_recycle_home".text = ""; # use trash automatically in home directory
@@ -47,6 +52,34 @@ }; 
     localVariables = {
       ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=7";
+    };
+
+    shellAliases = {
+      l = "ls ${lsOptions} -Bp";
+      l1="ls ${lsOptions} -1";
+      ls="ls ${lsOptions} -hF";
+      la="ls ${lsOptions} -hA";
+      ll="ls ${lsOptions} ${lsIsoDate} -hl";
+      lal="ll -A";
+      lla="lal";
+      llr="ll -t";
+
+      https = "http --default-scheme https";
+      kns = "kubens";
+      kx = "kubectx";
+      ava = "pnpx ava";
+      avt = "pnpx ava --tap";
+      avat = "pnpx ava --tap";
+      pino = "pino-pretty";
+      mocha = "pnpx mocha";
+      prettier = "pnpx prettier";
+      standard = "pnpx standard";
+      tsc = "pnpx tsc";
+      tslint = "pnpx tslint";
+      tsnode = "pnpx ts-node";
+      wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'";
+
+      watch = "watch "; # enable watch with aliases
     };
 
     # move to envExtra after 19.09
M user/zsh/.config/zsh/.zshrcuser/zsh/.config/zsh/.zshrc
@@ -6,49 +6,6 @@ setopt transient_rprompt 
 WORDCHARS=${${WORDCHARS//[-.=]}//[\/]}
 
-gnu_ls_options="-v --group-directories-first"
-gnu_ls_isodate="--time-style=long-iso"
-bsd_ls_options="-p"
-bsd_ls_isodate="-D '%F %k:%M'"
-
-case $os in
-  darwin)
-    ls_options=$bsd_ls_options
-    ;;
-  freebsd)
-    ls_options=$bsd_ls_options
-    ls_isodate=$bsd_ls_isodate
-    ;;
-  linux)
-    ls_options=$gnu_ls_options
-    ls_isodate=$gnu_ls_isodate
-    ;;
-esac
-alias watch="watch " # enable watch with aliases
-alias l="ls ${ls_options} -Bp"
-alias l1="ls ${ls_options} -1"
-alias ls="ls ${ls_options} -hF"
-alias la="ls ${ls_options} -hA"
-alias ll="ls ${ls_options} ${ls_isodate} -hl"
-alias lal="ll -A"
-alias lla="lal"
-alias llr="ll -t"
-
-alias https="http --default-scheme https"
-alias kns="kubens"
-alias kx="kubectx"
-
-alias ava="pnpx ava"
-alias avt="pnpx ava --tap"
-alias avat="pnpx ava --tap"
-alias pino="pino-pretty"
-alias mocha="pnpx mocha"
-alias prettier="pnpx prettier"
-alias standard="pnpx standard"
-alias tsc="pnpx tsc"
-alias tslint="pnpx tslint"
-alias tsnode="pnpx ts-node"
-alias wprop="xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'"
 zmodload zsh/terminfo
 
 bindkey '\e[3~' delete-char
@@ -159,13 +116,7 @@ autoload _helm   compdef _helm helm
 fi
 
-
 # General configuration
-
-if [[ -n $commands[gpg2] && -z $commands[gpg] ]]
-then
-  alias gpg=gpg2
-fi
 
 if [[ -n $commands[lunchy] ]]
 then