@@ -18,16 +18,13 @@ Plugin 'VundleVim/Vundle.vim'
1818" async syntax checking plugin for Vim
1919Plugin ' w0rp/ale'
2020
21- " auto check python use pep8
22- Plugin ' nvie/vim-flake8'
23-
2421" Highlights trailing whitespace in red and provides
2522Plugin ' bronson/vim-trailing-whitespace'
2623
2724" multiple selections
2825Plugin ' terryma/vim-multiple-cursors'
2926
30- " " Colorthemes
27+ " Colorthemes
3128Plugin ' altercation/vim-colors-solarized'
3229Plugin ' jnurmine/Zenburn'
3330Plugin ' flazz/vim-colorschemes'
@@ -63,7 +60,7 @@ Plugin 'elzr/vim-json'
6360Plugin ' dyng/ctrlsf.vim'
6461Plugin ' kylef/apiblueprint.vim'
6562
66- " a Git wrapper so awesome
63+ " A Git wrapper so awesome
6764Plugin ' tpope/vim-fugitive'
6865" A Vim plugin which shows a git diff in the gutter (sign column) and stages/undoes hunks.
6966Plugin ' airblade/vim-gitgutter'
@@ -128,7 +125,7 @@ let g:ale_sign_column_always = 0 " 一般需要实时检查,默认关闭
128125let g: ale_lint_on_save = 1 " save file auto check
129126let g: ale_lint_on_text_changed = 0 " for ale_lint_on_save = 1
130127let g: ale_lint_on_enter = 0 " for ale_lint_on_save = 1
131- map <F6> :ALEToggle<CR>
128+ map <F6> :ALEToggle \| echo 'g:ale_enabled =' g:ale_enabled <CR>
132129
133130" YouCompleteMe settings
134131let g: ycm_collect_identifiers_from_comments_and_strings = 0
188185
189186" Ctrl-j 切换到下方的分割窗口 - Ctrl-k 切换到上方的分割窗口 - Ctrl-l
190187" 切换到右侧的分割窗口 - Ctrl-h 切换到左侧的分割窗口
191- " split navigations
188+ " split navigations
192189set splitbelow
193190set splitright
194191nnoremap <C-J> <C-W><C-J>
@@ -209,7 +206,7 @@ map <F5> :NERDTreeToggle<CR>
209206" NERDTree settings
210207" 是否显示隐藏文件
211208let NERDTreeShowHidden= 0
212- " 忽略一下文件的显示
209+ " 忽略以下文件的显示
213210let NERDTreeIgnore= [' \.pyc' ,' \~$' ,' \.swp' ,' __pycache__' ,' \.git$' ,' \.DS_Store' ]
214211" NERDTree git 扩展
215212let g: NERDTreeIndicatorMapCustom = {
0 commit comments