1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Add $GOPATH/bin to PATH

This commit is contained in:
Joe Groocock 2018-04-20 23:58:53 +01:00
parent fff7fa1452
commit 4579473479
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86
3 changed files with 6 additions and 2 deletions

View File

@ -104,6 +104,7 @@ Plugin 'PotatoesMaster/i3-vim-syntax'
Plugin 'lervag/vimtex'
Plugin 'JamshedVesuna/vim-markdown-preview'
Plugin 'junegunn/fzf.vim'
Plugin 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
call vundle#end()

View File

@ -35,7 +35,10 @@ export TERMINAL="termite"
export BROWSER="chromium"
export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel"
export QT_QPA_PLATFORMTHEME=gtk2
export GOPATH="$XDG_LOCAL_HOME/go"
# Go configuration
export GOPATH="$XDG_DATA_HOME/go"
export PATH="$PATH:$GOPATH/bin"
exists() { which $@ 0<&- 1>/dev/null 2>/dev/null; }

View File

@ -26,4 +26,4 @@ vim +PluginUpdate +qall
#########################
cd "$VIMDIR/bundle/YouCompleteMe"
git submodule update --init --recursive
./install.py --system-libclang --clang-completer
./install.py --system-libclang --clang-completer --go-completer --rust-completer --js-completer --java-completer