Created
March 11, 2014 19:21
-
-
Save VEINHORN/9493077 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-fish. | |
set fish_path $HOME/.oh-my-fish | |
# Theme | |
set fish_theme bobthefish | |
# set fish_theme agnoster | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-fish/plugins/*) | |
# Custom plugins may be added to ~/.oh-my-fish/custom/plugins/ | |
# Example format: set fish_plugins autojump bundler | |
set fish_plugins autojump bundler node | |
# Path to your custom folder (default path is $FISH/custom) | |
#set fish_custom $HOME/dotfiles/oh-my-fish | |
# Load oh-my-fish configuration. | |
. $fish_path/oh-my-fish.fish | |
# Powerline | |
# . /usr/local/lib/python2.7/site-packages/powerline/bindings/fish/powerline.fish | |
# Aliases | |
alias :q=exit | |
alias :wq=exit | |
alias :e=vim | |
alias gs="git st" | |
alias gc="git commit" | |
alias gl="git lg" | |
alias ga="git add" | |
alias gd="git diff" | |
alias gp="git push" | |
set -x TERM xterm-256color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment