Created
January 14, 2019 09:47
-
-
Save gawaooooo/ce52cae63b9fb617c01f3efc0e0fc604 to your computer and use it in GitHub Desktop.
config fish
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
# git alias | |
balias g git | |
# NVM | |
set -gx nvm_prefix /usr/local/opt/nvm | |
# GO | |
# set the workspace path | |
set -x GOPATH $HOME/go | |
# add the go bin path to be able to execute our programs | |
set -x PATH $PATH /usr/local/opt/go/libexec/bin $GOPATH/bin |
# fzf
set -U FZF_LEGACY_KEYBINDINGS 0
# git alias
#balias g git
# NVM
#set -gx nvm_prefix /usr/local/opt/nvm
# GO
# set the workspace path
#set -x GOPATH $HOME/go
# add the go bin path to be able to execute our programs
#set -x PATH $PATH /usr/local/opt/go/libexec/bin $GOPATH/bin
set -x GOPATH $HOME/go
set -x PATH $PATH $GOPATH/bin
# rbenv
#status --is-interactive; and source (rbenv init -|psub)
# Android
set --export ANDROID $HOME/Library/Android;
set --export ANDROID_HOME $ANDROID/sdk;
set -gx PATH $ANDROID_HOME/tools $PATH;
set -gx PATH $ANDROID_HOME/tools/bin $PATH;
set -gx PATH $ANDROID_HOME/platform-tools $PATH;
set -gx PATH $ANDROID_HOME/emulator $PATH
# starship(最後に追加)
starship init fish | source
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Windos版fishの設定