]> git.friedersdorff.com Git - max/saltfiles.git/blobdiff - states/vim/files/vimrc
COnfigure flake8
[max/saltfiles.git] / states / vim / files / vimrc
index 50509aeef109310152876e0b51897372651e442c..d8c90484e4e5eb83fa3af469b186251f662f3eb8 100644 (file)
@@ -37,9 +37,9 @@ Plugin 'gu-fan/riv.vim'
 Plugin 'nvie/vim-rst-tables'
 Plugin 'lepture/vim-jinja'
 Plugin 'aklt/plantuml-syntax'
-Plugin 'psf/black'
 Plugin 'vim-python/python-syntax'
 Plugin 'luochen1990/rainbow'
+Plugin 'majutsushi/tagbar'
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
@@ -56,6 +56,7 @@ colorscheme molokai
 " set shiftwidth=2
 " set softtabstop=2
 set relativenumber
+set number
 
 let g:html_indent_inctags = "html,body,head,tbody"
 let g:indentLine_color_term = 200
@@ -104,7 +105,7 @@ let g:clang_user_options='|| exit0'
 
 " Color 80th column
 highlight ColorColumn ctermbg=0
-set colorcolumn=80
+let &colorcolumn="80,".join(range(100,999),",")
 
 " Octave Syntax
 " augroup filetypedetect
@@ -155,3 +156,6 @@ hi MatchParen cterm=underline ctermbg=none ctermfg=none
 
 " Rainbow parens
 let g:rainbow_active = 1
+
+" Activate tagbar with F8
+nmap <F8> :TagbarToggle<CR>