Skip to content

Instantly share code, notes, and snippets.

@bilzard
Created July 7, 2019 11:19
Show Gist options
  • Save bilzard/8fec3a65ab76696344516a7c5b39a512 to your computer and use it in GitHub Desktop.
Save bilzard/8fec3a65ab76696344516a7c5b39a512 to your computer and use it in GitHub Desktop.
# collored less
set -xU LESS_TERMCAP_md (printf "\e[01;31m")
set -xU LESS_TERMCAP_me (printf "\e[0m")
set -xU LESS_TERMCAP_se (printf "\e[0m")
set -xU LESS_TERMCAP_so (printf "\e[01;44;33m")
set -xU LESS_TERMCAP_ue (printf "\e[0m")
set -xU LESS_TERMCAP_us (printf "\e[01;32m")
# go
set -x GOPATH $HOME/.go
set -x PATH $HOME/.go/bin $PATH
# direnv
direnv hook fish | source
set -x EDITOR vim
# terraform
alias tp="terraform plan"
alias ta="terraform apply"
alias ti="terraform init"
# git
alias gd="git diff"
alias gl="git log"
alias gs="git status"
# anyenv
status --is-interactive; and source (anyenv init -|psub)
status --is-interactive; and pyenv virtualenv-init - | source
# gatsby
alias gat='gatsby'
set -g fish_user_paths "/usr/local/opt/[email protected]/bin" $fish_user_paths
# xonsh
alias x='xonsh'
x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment