Added space to expanded folded content
This commit is contained in:
parent
9ec171b405
commit
2a50b24fec
1 changed files with 12 additions and 4 deletions
12
vim/vimrc
12
vim/vimrc
|
@ -12,8 +12,10 @@ set wrap
|
||||||
set linebreak
|
set linebreak
|
||||||
set nolist
|
set nolist
|
||||||
|
|
||||||
" Stop the py3 imp complaining for YCM (and others using python3
|
" Attempt to fix python/python3 issue
|
||||||
" solution found at https://github.com/vim/vim/issues/3117
|
" To run py2 stuff, you can force with "vim --cmd 'let py2 = 1'
|
||||||
|
"if exists('py2') && has('python')
|
||||||
|
"elseif has('python3')
|
||||||
if !has('patch-8.1.201')
|
if !has('patch-8.1.201')
|
||||||
silent! python3 1
|
silent! python3 1
|
||||||
endif
|
endif
|
||||||
|
@ -45,7 +47,12 @@ Plugin 'ryanoasis/vim-webdevicons'
|
||||||
Plugin 'brookhong/DBGPavim'
|
Plugin 'brookhong/DBGPavim'
|
||||||
Plugin 'dhruvasagar/vim-table-mode'
|
Plugin 'dhruvasagar/vim-table-mode'
|
||||||
Plugin 'nathanielc/vim-tickscript'
|
Plugin 'nathanielc/vim-tickscript'
|
||||||
|
Plugin 'godlygeek/tabular'
|
||||||
|
Plugin 'plasticboy/vim-markdown'
|
||||||
Plugin 'fatih/vim-go'
|
Plugin 'fatih/vim-go'
|
||||||
|
Plugin 'dbeniamine/cheat.sh-vim'
|
||||||
|
"let g:deoplete#enable_at_startup = 1
|
||||||
|
"Plugin 'Shougo/deoplete.nvim'
|
||||||
|
|
||||||
" Add all your plugins here (note older versions of Vundle used Bundle instead
|
" Add all your plugins here (note older versions of Vundle used Bundle instead
|
||||||
" of Plugin)
|
" of Plugin)
|
||||||
|
@ -133,6 +140,7 @@ let g:pymode_syntax_space_errors = g:pymode_syntax_all
|
||||||
let g:pymode_folding = 0
|
let g:pymode_folding = 0
|
||||||
let g:riv_fold_level = 0
|
let g:riv_fold_level = 0
|
||||||
let g:riv_fold_auto_update = 0
|
let g:riv_fold_auto_update = 0
|
||||||
|
nnoremap <space> za
|
||||||
|
|
||||||
let g:dbgPavimPort = 9000
|
let g:dbgPavimPort = 9000
|
||||||
let g:dbgPavimBreakAtEntry = 0
|
let g:dbgPavimBreakAtEntry = 0
|
||||||
|
|
Loading…
Reference in a new issue