summaryrefslogtreecommitdiff
path: root/config.fish
blob: af93792e7af2e1cd33cb9d0be2fbd6aa22170cae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[ -z "$DISPLAY" ] ; and [ "$XDG_VTNR" = "1" ] ; and exec startx

if which nvim ^ /dev/null > /dev/null
  export VISUAL=nvim
  export EDITOR=nvim
else
  export VISUAL=vim
  export EDITOR=vim
end

if [ -d "$HOME/.node_modules/bin" ] 
    export PATH="$PATH:$HOME/.node_modules/bin"
end
if [ -d "$HOME/go/bin" ] 
    export PATH="$PATH:$HOME/go/bin"
end



# alias gobjc='gcc -L /usr/lib/GNUstep/Libraries/gnustep-base -lgnustep-base -fconstant-string-class=NSConstantString'
# alias smpd='ssh achessh@ache.one -fp 21 ssh ache@localhost -p 60065 -L 8091:localhost:8091 -fN'