Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Lin committed Nov 13, 2020
1 parent c02826a commit 74d83d9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'
"Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/nerdtree'
Plugin 'powerline/fonts'
Plugin 'vim-airline/vim-airline'
Expand All @@ -26,6 +26,8 @@ Plugin 'fatih/vim-go'
Plugin 'majutsushi/tagbar'
Plugin 'dag/vim-fish'
Plugin 'w0rp/ale'
Plugin 'dart-lang/dart-vim-plugin'

call vundle#end()
filetype plugin indent on

Expand Down Expand Up @@ -71,6 +73,9 @@ let g:ycm_show_diagnostics_ui = 0
" toggle completion modes inside of insert mode through that key
let g:ycm_semantic_completion_toggle = '<c-f>'

" ALE ----------------------
let g:ale_python_pylint_options = '--errors-only'

" NerdTree -------------------
" open a NERDTree automatically when vim starts up if no files were specified
" autocmd StdinReadPre * let s:std_in=1
Expand Down
20 changes: 15 additions & 5 deletions fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,25 @@ set -x LD_LIBRARY_PATH "$LD_LIBRARY_PATH:/usr/local/cuda-8.0/lib64:/usr/local/c
set -x TERM screen-256color

#PYTHONPATH
set -x PYTHONPATH "$PYTHONPATH:/usr/local/lib/python2.7/site-packages:/home/chunyo/pyvision/src"
set -x PYTHONPATH "$PYTHONPATH:/usr/local/lib/python2.7/site-packages:/home/chunyolin/pyvision/src"
set -x PYTHONPATH "$PYTHONPATH:/usr/local/lib/python2.7/dist-packages"

# added by Anaconda2 4.2.0 installer
# set -x PATH "/home/chunyo/anaconda2/bin:$PATH"
# set -x PATH "/home/chunyolin/anaconda2/bin:$PATH"
set -e GNOME_KEYRING_CONTROL
set -x CLICOLOR 'true'
# added by Anaconda3 installer
set -x PATH "/Users/chunyo/anaconda3/bin:$PATH"
set -x PATH "/Users/chunyolin/anaconda3/bin:$PATH"
# golang
set -x PATH "$PATH:/Users/chunyo/package/go/bin"
set -x GOROOT_BOOTSTRAP "/Users/chunyo/package/go"
set -x PATH "$PATH:/Users/chunyolin/package/go/bin"
set -x GOROOT_BOOTSTRAP "/Users/chunyolin/package/go"
set -x PATH "$PATH:/Users/chunyolin/flutter/bin"

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
eval /Users/chunyolin/anaconda3/bin/conda "shell.fish" "hook" $argv | source
# <<< conda initialize <<<

set -x LD_LIBRARY_PATH $HOME/homebrew/lib:$LD_LIBRARY_PATH
set -x PATH $HOME/homebrew/bin:$PATH
set -x PATH "$PATH":"$HOME/flutter/.pub-cache/bin"

0 comments on commit 74d83d9

Please sign in to comment.