about summary refs log tree commit diff
path: root/configs/shared/variables.zsh
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-10-09T11·13+0100
committerWilliam Carroll <wpcarro@gmail.com>2019-12-24T15·21+0000
commit6b456c1b7a4f6899f063a6e65355af51901d9c7a (patch)
treecfc70d74818ae9fabdbbfb0cf16cce092e4c1a09 /configs/shared/variables.zsh
parenta7c72adb2ebec1e497fc040eaf3551d564d61a5b (diff)
Massive configuration overhaul
Currently paying the price of months of non-diligent git usage.

Here's what has changed.

- Theming support in Gvcci and wpgtk
- Dropping support for i3
- Supporting EXWM
- Many Elisp modules
- Collapsed redundant directories in ./configs
Diffstat (limited to 'configs/shared/variables.zsh')
-rw-r--r--configs/shared/variables.zsh67
1 files changed, 67 insertions, 0 deletions
diff --git a/configs/shared/variables.zsh b/configs/shared/variables.zsh
new file mode 100644
index 0000000000..7fac031ae8
--- /dev/null
+++ b/configs/shared/variables.zsh
@@ -0,0 +1,67 @@
+export GPG_TTY=$(tty) # "It is important that this environment variable always reflects the output of the tty command". Source: https://gnupg.org/documentation/manuals/gnupg-devel/Invoking-GPG_002dAGENT.html
+
+date_fmt=%b-%d-%Y_%T # my preferred date formatting string used for generated filename
+
+# ZSH's static named directories
+hash -d pro=~/programming
+hash -d dot="$DOTFILES"
+hash -d wpg=~/.config/wpg/templates
+hash -d citc=/google/src/cloud/$USER
+hash -d doc=~/Documents
+hash -d d=~/Downloads
+hash -d ss=~/Pictures/screenshots
+hash -d fonts="$DOTFILES/configs/shared/.local/share/fonts"
+hash -d sounds="$DOTFILES/configs/shared.local/share/sounds"
+hash -d wallpaper="$DOTFILES/configs/shared/.local/share/wallpaper"
+hash -d org="$ORG_DIRECTORY"
+hash -d x20=/google/data/rw/users/wp/wpcarro # remember: to access x20, you need to run `prodaccess`
+hash -d experimental=./experimental/users/wpcarro
+# named directories for commonly used projects
+hash -d korvus_framework=./java/com/google/corp/sales
+hash -d korvus_services=./corp/sales/casesautomation
+hash -d escalations=./corp/gtech/pto/tda/beacons_extension
+hash -d ultra=./ads/doubleclick/systems/crm
+hash -d incentives_fe=./experimental/adservices/jarvis/jarvis_extension/jarvis_staging/js
+hash -d incentives_be=./experimental/adservices/tesseract/handlers/incentives
+hash -d spewall_fe=./alkali/apps/speakeasydashboard
+hash -d spewall_be=./java/com/google/alkali/applications/speakeasydashboard
+hash -d spewall_protos=./google/internal/alkali/applications/speakeasydashboard
+hash -d spewall_tests=./javatests/com/google/alkali/applications/speakeasydashboard
+
+# 8-bit colors
+black='\u001b[30m'
+red='\u001b[31m'
+green='\u001b[32m'
+yellow='\u001b[33m'
+blue='\u001b[34m'
+magenta='\u001b[35m'
+cyan='\u001b[36m'
+white='\u001b[37m'
+bright_black='\u001b[30;1m'
+bright_red='\u001b[31;1m'
+bright_green='\u001b[32;1m'
+bright_yellow='\u001b[33;1m'
+bright_blue='\u001b[34;1m'
+bright_magenta='\u001b[35;1m'
+bright_cyan='\u001b[36;1m'
+bright_white='\u001b[37;1m'
+
+# some of my favorite emojis as unicode
+facepalm='\U1F926'
+eyeroll='\U1F644'
+sheesh='\U1F62C'
+see_no_evil='\U1F648'
+blush='\U1F60A'
+wink='\U1F609'
+laugh='\U1F923'
+
+# commonly used config files
+v="$HOME/.config/nvim/init.vim"
+e="$HOME/.emacs.d/init.el"
+z="$HOME/.zshrc"
+a="$HOME/aliases.zsh"
+f="$HOME/functions.zsh"
+l="$HOME/variables.zsh" # v is taken by vim
+x="$HOME/.Xresources"
+i="$HOME/.config/i3/config"
+n="/etc/nixos/configuration.nix"