Add fish config
This commit is contained in:
parent
9829496fc8
commit
88e048f800
3 changed files with 16 additions and 0 deletions
5
fish/conf.d/10-variables.fish
Normal file
5
fish/conf.d/10-variables.fish
Normal file
|
@ -0,0 +1,5 @@
|
|||
set -gx GOPATH $HOME/go
|
||||
set -gxa PATH $GOROOT/bin $GOPATH/bin
|
||||
set -gx VOLTA_HOME $HOME/.volta
|
||||
set -gxa PATH $VOLTA_HOME/bin
|
||||
|
2
fish/conf.d/20-commands.fish
Normal file
2
fish/conf.d/20-commands.fish
Normal file
|
@ -0,0 +1,2 @@
|
|||
git config --global user.name $GITUSER
|
||||
git config --global user.email $GITEMAIL
|
9
fish/config.fish
Normal file
9
fish/config.fish
Normal file
|
@ -0,0 +1,9 @@
|
|||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
end
|
||||
|
||||
if test -e $HOME/Documents/coding/dotfiles/shell/alias/alias
|
||||
. $HOME/Documents/coding/dotfiles/shell/alias/alias
|
||||
end
|
||||
|
||||
starship init fish | source
|
Loading…
Reference in a new issue