1
0
Fork 0

replace indentline with indentguides, remove some unnecessary comments, disable vim-tbone because I do not really use it

This commit is contained in:
Von Random 2015-04-13 01:36:05 +03:00
parent 8f9d51b72f
commit 40ac731b7f

20
vimrc
View file

@ -96,12 +96,13 @@ if v:version >= 700
Plugin 'scrooloose/nerdtree' "file manager
Plugin 'tpope/vim-fugitive' "git awesomeness
Plugin 'tpope/vim-surround' "quotes replacement made easy
Plugin 'tpope/vim-tbone' "tmux support
Plugin 'directionalWindowResizer' "resize windows with simple hotkeys
"Plugin 'tpope/vim-tbone' "tmux support
"Plugin 'kien/ctrlp.vim' "some quick file accessing goodness
"Plugin 'vimacs' "it's emacs, in vim insert mode
" IDE like features
Plugin 'Yggdroot/indentLine' "indent level lines
Plugin 'nathanaelkane/vim-indent-guides' "indent guides on demand
Plugin 'davidhalter/jedi-vim' "python autocompletion
Plugin 'jiangmiao/auto-pairs' "automatically place closing bracket / quote
Plugin 'majutsushi/tagbar' "class / module browser
@ -112,7 +113,6 @@ if v:version >= 700
"Plugin 'klen/python-mode' "python IDE stuff
"Plugin 'xolox/vim-misc' "deps for lua-ftplugin
"Plugin 'xolox/vim-lua-ftplugin' "lua stuff (very slow)
"Plugin 'vimacs' "it's emacs, in vim insert mode
" colorschemes
Plugin 'vdrandom/forked-solarized.vim'
@ -121,11 +121,12 @@ if v:version >= 700
Plugin 'MaxSt/FlatColor'
" syntax highlight plugins
Plugin 'puppetlabs/puppet-syntax-vim' "puppet
Plugin 'nagios-syntax' "nagios / icinga
Plugin 'puppetlabs/puppet-syntax-vim'
Plugin 'nagios-syntax'
silent! call vundle#end()
" easymotion options
let g:EasyMotion_do_mapping=0
let g:EasyMotion_smartcase=1
nmap s <Plug>(easymotion-s)
map <Leader>j <Plug>(easymotion-j)
@ -155,15 +156,6 @@ if v:version >= 700
let g:signify_vcs_list=[ 'svn', 'git' ]
let g:signify_sign_change='~'
" indentLine
let g:indentLine_fileType=[ 'python', 'ruby' ]
let g:indentLine_faster=1
let g:indentLine_showFirstIndentLevel=1
let g:indentLine_noConcealCursor=1
let g:indentLine_char='┆'
let g:indentLine_first_char='┆'
map <Leader>i :IndentLinesToggle<CR>
" tagbar options
map <Leader>. :TagbarToggle<CR>
endif