]> git.armaanb.net Git - config.org.git/blobdiff - config.org
ash: continue to make aliases more portable
[config.org.git] / config.org
index 46059f8e3bd86f316f5b9960dfd1dd68933a72c0..d9a2abf0f858715ada6200401fa6d89f9161d13f 100644 (file)
@@ -726,7 +726,7 @@ No more clogging up init.el.
 *** Keybindings
 **** WM actions
 #+begin_src conf :tangle ~/.spectrwm.conf
-  program[term] = alacritty -e tmux
+  program[term] = st -e tmux
   program[screenshot_all] = flameshot gui
   program[notif] = /home/armaa/Code/scripts/setter status
   program[pass] = /home/armaa/Code/scripts/passmenu
@@ -772,7 +772,7 @@ No more clogging up init.el.
   program[irc] = emacsclient -c --eval '(switch-to-buffer "irc.armaanb.net:6697")'
   program[emacs] = emacsclient -c
   program[firefox] = firefox
-  program[calc] = alacritty -e because -l
+  program[calc] = st -e because -l
   program[emacs-anywhere] = emacsclient --eval "(emacs-everywhere)"
 
   bind[email] = MOD+Control+1
@@ -845,7 +845,7 @@ No more clogging up init.el.
   finger() {
       user=$(echo "$1" | cut -f 1 -d '@')
       host=$(echo "$1" | cut -f 2 -d '@')
-      echo $user | nc "$host" 79 -N
+      echo $user | nc "$host" 79
   }
 #+end_src
 **** Upload to ftp.armaanb.net
@@ -912,7 +912,6 @@ No more clogging up init.el.
   alias ln='ln -v'
   alias grep='grep -in --color=auto'
   alias mkdir='mkdir -pv'
-  alias wget='wget -e robots=off'
   alias lanex='java -jar ~/.local/share/lxc/lanxchange.jar'
   alias vim=$EDITOR
   alias emacs=$EDITOR
@@ -992,73 +991,6 @@ No more clogging up init.el.
   alias cal="cal -3 --color=auto"
   alias bc='bc -l'
 #+end_src
-** Alacritty
-*** Appearance
-#+begin_src yml :tangle ~/.config/alacritty/alacritty.yml
-font:
-  normal:
-    family: JetBrains Mono Nerd Font
-    style: Medium
-  italic:
-    style: Italic
-  Bold:
-    style: Bold
-  size: 7
-  ligatures: true # Requires ligature patch
-
-window:
-  padding:
-    x: 5
-    y: 5
-
-background_opacity: 1
-#+end_src
-*** Color scheme
-Modus vivendi. Source: https://github.com/ishan9299/Nixos/blob/d4bbb7536be95b59466bb9cca4d671be46e04e81/user/alacritty/alacritty.yml#L30-L118
-#+begin_src yml :tangle ~/.config/alacritty/alacritty.yml
-colors:
-  # Default colors
-  primary:
-    background: '#000000'
-    foreground: '#ffffff'
-
-  cursor:
-    text: '#000000'
-    background: '#ffffff'
-
-  # Normal colors (except green it is from intense colors)
-  normal:
-    black:   '#000000'
-    red:     '#ff8059'
-    green:   '#00fc50'
-    yellow:  '#eecc00'
-    blue:    '#29aeff'
-    magenta: '#feacd0'
-    cyan:    '#00d3d0'
-    white:   '#eeeeee'
-
-  # Bright colors [all the faint colors in the modus theme]
-  bright:
-    black:   '#555555'
-    red:     '#ffa0a0'
-    green:   '#88cf88'
-    yellow:  '#d2b580'
-    blue:    '#92baff'
-    magenta: '#e0b2d6'
-    cyan:    '#a0bfdf'
-    white:   '#ffffff'
-
-  # dim [all the intense colors in modus theme]
-  dim:
-    black:   '#222222'
-    red:     '#fb6859'
-    green:   '#00fc50'
-    yellow:  '#ffdd00'
-    blue:    '#00a2ff'
-    magenta: '#ff8bd4'
-    cyan:    '#30ffc0'
-    white:   '#dddddd'
-#+end_src
 ** IPython
 *** General
 Symlink profile_default/ipython_config.py to profile_math/ipython_config.py
@@ -1341,4 +1273,5 @@ Modus operandi.
 ** Tmux
 #+begin_src conf :tangle ~/.tmux.conf
   set -g status off
+  set-window-option -g mode-keys vi
 #+end_src