12 lines
402 B
Bash
12 lines
402 B
Bash
# The city's finest exports!
|
|
export GIT_EDITOR="vim"
|
|
export PATH="$PATH:$HOME/.local/bin"
|
|
#export TERM=xterm-256color # Fixes ssh since I use alacritty and it sets the TERM to its name
|
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
|
|
|
alias ls="ls -h --color=auto"
|
|
alias myip="curl https://ifconfig.co"
|
|
alias steam="HOME=${HOME}/Games/steam steam"
|
|
alias wget="wget --hsts-file $HOME/.cache/wget/hsts"
|
|
|