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:
parent
fff7fa1452
commit
4579473479
@ -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()
|
||||
|
||||
|
5
.profile
5
.profile
@ -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; }
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user