Skip to content

Instantly share code, notes, and snippets.

@laysionqet
Created June 1, 2015 05:23
Show Gist options
  • Save laysionqet/a85353efa3f863530d14 to your computer and use it in GitHub Desktop.
Save laysionqet/a85353efa3f863530d14 to your computer and use it in GitHub Desktop.
my fish config
# Path to your oh-my-fish.
set fish_path $HOME/.oh-my-fish
# Theme
set fish_theme coffeeandcode
# All built-in plugins can be found at ~/.oh-my-fish/plugins/
# Custom plugins may be added to ~/.oh-my-fish/custom/plugins/
# Enable plugins by adding their name separated by a space to the line below.
set fish_plugins theme brew osx git-flow
# Path to your custom folder (default path is ~/.oh-my-fish/custom)
#set fish_custom $HOME/dotfiles/oh-my-fish
# Load oh-my-fish configuration.
. $fish_path/oh-my-fish.fish
# Load autojump configuration
source /usr/local/share/autojump/autojump.fish
set MANPATH /usr/local/man $MANPATH
set ANDROID_DEV_DIR $HOME/Documents/android
set GRADLE_HOME $ANDROID_DEV_DIR/gradle-2.4
set ANDROID_HOME $ANDROID_DEV_DIR/sdk
set NDK_HOME $ANDROID_DEV_DIR/android-ndk-r10e
set SCALA_HOME /usr/local/opt/scala/idea
set JAVA_HOME /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home
set PATH /usr/local/bin /usr/bin /bin /usr/sbin /sbin /usr/local/sbin $ANDROID_HOME/tools $ANDROID_HOME/platform-tools
set PATH $PATH $GRADLE_HOME/bin
set PATH $PATH NDK_HOME
set GOPATH $HOME/Documents/mygo
set LD_LIBRARY_PATH /Applications/Android\ Studio.app/Contents/sdk/tools/lib
set EDITOR vim
alias cls clear
alias lf 'll | ack'
alias edit_fish_config 'vim ~/.config/fish/config.fish'
alias reload_fish_config 'source ~/.config/fish/config.fish'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment