1
0
Fork 0

vim: cleanup of the plugins I barely ever use

This commit is contained in:
Von Random 2015-06-01 18:39:31 +03:00
parent 7e5db6eb66
commit f90ef8b70e

19
vimrc
View file

@ -56,7 +56,7 @@ noremap <F1> <Esc>
"clear search highlight "clear search highlight
nnoremap <Leader>/ :nohls<CR> nnoremap <Leader>/ :nohls<CR>
"disable auto indent "disable auto indent
nnoremap <Leader>a :set noautoindent<CR> nnoremap <Leader>a :set autoindent!<CR>
"make wrapped lines navigation easier "make wrapped lines navigation easier
nnoremap j gj nnoremap j gj
nnoremap k gk nnoremap k gk
@ -95,33 +95,33 @@ if v:version >= 700
Plugin 'bling/vim-bufferline' "stylish buffer display Plugin 'bling/vim-bufferline' "stylish buffer display
Plugin 'jeetsukumaran/vim-buffergator' "buffer management Plugin 'jeetsukumaran/vim-buffergator' "buffer management
Plugin 'mhinz/vim-signify' "version control system gutter info Plugin 'mhinz/vim-signify' "version control system gutter info
Plugin 'scrooloose/nerdcommenter' "comment manager
Plugin 'scrooloose/nerdtree' "file manager Plugin 'scrooloose/nerdtree' "file manager
Plugin 'tpope/vim-fugitive' "git awesomeness Plugin 'tpope/vim-fugitive' "git awesomeness
Plugin 'tpope/vim-surround' "quotes replacement made easy Plugin 'tpope/vim-surround' "quotes replacement made easy
Plugin 'directionalWindowResizer' "resize windows with simple hotkeys Plugin 'directionalWindowResizer' "resize windows with simple hotkeys
"Plugin 'scrooloose/nerdcommenter' "comment manager
"Plugin 'tpope/vim-tbone' "tmux support "Plugin 'tpope/vim-tbone' "tmux support
"Plugin 'kien/ctrlp.vim' "some quick file accessing goodness "Plugin 'kien/ctrlp.vim' "some quick file accessing goodness
"Plugin 'vimacs' "it's emacs, in vim insert mode "Plugin 'vimacs' "it's emacs, in vim insert mode
" IDE like features " IDE like features
Plugin 'jiangmiao/auto-pairs' "automatically place closing bracket / quote Plugin 'jiangmiao/auto-pairs' "automatically place closing bracket / quote
Plugin 'msanders/snipmate.vim' "snippets support
Plugin 'scrooloose/syntastic' "syntax checker
"Plugin 'davidhalter/jedi-vim' "python autocompletion "Plugin 'davidhalter/jedi-vim' "python autocompletion
"Plugin 'indentpython' "smarter python indentation "Plugin 'indentpython' "smarter python indentation
"Plugin 'klen/python-mode' "python IDE stuff "Plugin 'klen/python-mode' "python IDE stuff
"Plugin 'majutsushi/tagbar' "class / module browser "Plugin 'majutsushi/tagbar' "class / module browser
"Plugin 'msanders/snipmate.vim' "snippets support
"Plugin 'nathanaelkane/vim-indent-guides' "indent guides on demand "Plugin 'nathanaelkane/vim-indent-guides' "indent guides on demand
"Plugin 'nvie/vim-flake8' "python checking with flake8 "Plugin 'nvie/vim-flake8' "python checking with flake8
"Plugin 'scrooloose/syntastic' "syntax checker
"Plugin 'xolox/vim-misc' "deps for lua-ftplugin "Plugin 'xolox/vim-misc' "deps for lua-ftplugin
"Plugin 'xolox/vim-lua-ftplugin' "lua stuff (very slow) "Plugin 'xolox/vim-lua-ftplugin' "lua stuff (very slow)
" colorschemes " colorschemes
Plugin 'vdrandom/forked-solarized.vim'
Plugin 'morhetz/gruvbox' Plugin 'morhetz/gruvbox'
Plugin 'whatyouhide/vim-gotham' "Plugin 'MaxSt/FlatColor'
Plugin 'MaxSt/FlatColor' "Plugin 'vdrandom/forked-solarized.vim'
"Plugin 'whatyouhide/vim-gotham'
" syntax highlight plugins " syntax highlight plugins
Plugin 'puppetlabs/puppet-syntax-vim' Plugin 'puppetlabs/puppet-syntax-vim'
@ -191,10 +191,6 @@ if v:version >= 700
"let g:solarized_visibility='low' "let g:solarized_visibility='low'
"let g:solarized_termtrans=1 "let g:solarized_termtrans=1
"colorscheme solarized "colorscheme solarized
"------- seoul256 ------
"let g:seoul256_background=233
"colorscheme seoul256
"let g:airline_theme='powerlineish'
"----------------------- "-----------------------
syntax on syntax on
@ -236,3 +232,4 @@ endif
" Enable autoindent " Enable autoindent
filetype plugin indent on filetype plugin indent on