# language export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 # nice dircolors for ls export CLICOLOR=1 export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx # n — node version manager export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo). # shell export SHELL=/usr/local/bin/zsh # brew CASK export HOMEBREW_CASK_OPTS="--appdir=/Applications" # paths export PATH=/usr/local/bin:$PATH export PATH=/usr/local/sbin:$PATH export PATH=/usr/local/opt/curl/bin:$PATH export PATH=/usr/local/opt/ruby/bin:$PATH export PATH=/usr/local/lib/ruby/gems/2.7.0/bin:$PATH export PATH=/usr/local/opt/php@7.3/bin:$PATH export PATH=/usr/local/opt/php@7.3/sbin:$PATH # manpath export MANPATH=/usr/local/share/man:$MANPATH # disable stupid ._ and dsstore files export COPY_EXTENDED_ATTRIBUTES_DISABLE=true export COPYFILE_DISABLE=true # editor export EDITOR="/usr/local/bin/nvim" export VISUAL="/usr/local/bin/nvim" # disable auto titling fixes tmux window export DISABLE_AUTO_TITLE=true # grep / ripgrep export GREP_OPTIONS='--color=auto' export GREP_COLOR='1;32' export RIPGREP_CONFIG_PATH="$HOME/dotfiles/ripgreprc" # pager export PAGER="less" export LESS="-R" export LC_CTYPE=$LANG # nnn export NNN_BMS='d:~/Dotfiles;s:~/Sites;l:~/Downloads;h:~/' export NNN_FIFO='/tmp/nnn.fifo' export NNN_TRASH=1 export NNN_PLUG='o:fzcd;j:autojump;p:preview-tui' export NNN_ARCHIVE="\\.(7z|a|ace|alz|arc|arj|bz|bz2|cab|cpio|deb|gz|jar|lha|lz|lzh|lzma|lzo|rar|rpm|rz|t7z|tar|tbz|tbz2|tgz|tlz|txz|tZ|tzo|war|xpi|xz|Z|zip)$" # n node version management export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo).