diff options
Diffstat (limited to 'configs/shared/zsh/variables.zsh')
-rw-r--r-- | configs/shared/zsh/variables.zsh | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/configs/shared/zsh/variables.zsh b/configs/shared/zsh/variables.zsh index 5e8e67ed0221..40611805ad8a 100644 --- a/configs/shared/zsh/variables.zsh +++ b/configs/shared/zsh/variables.zsh @@ -1,20 +1,19 @@ -export TERMINAL=urxvtc -export EDITOR=emacsclient -export ALTERNATE_EDITOR=nvim 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 -BROWSER=google-chrome -NIXIFY="$HOME/programming/nixify" -DATE_FMT=%b-%d-%Y_%T # my preferred date formatting string used for generated filename +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=~/programming/dotfiles +hash -d dot="$DOTFILES" hash -d citc=/google/src/cloud/$USER hash -d doc=~/Documents hash -d d=~/Downloads hash -d ss=~/Pictures/screenshots -hash -d org=~/Documents/org +hash -d fonts="$DOTFILES/configs/linux/misc/.local/share/fonts" +hash -d sounds="$DOTFILES/configs/linux/misc/.local/share/sounds" +hash -d wallpaper="$DOTFILES/configs/linux/misc/.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` # named directories for commonly used projects hash -d korvus_framework=./java/com/google/corp/sales hash -d korvus_services=./corp/sales/casesautomation @@ -23,6 +22,24 @@ 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 +# 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' + # commonly used config files v="$HOME/.config/nvim/init.vim" e="$HOME/.emacs.d/init.el" |