mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 11:30:29 +01:00
Revisiting the plugins.
There are some of the plugins, which I never use in my workflow, so that I've removing them. Other than that, narrow down filetype specific plugins to the right file types. Also removed js specific plugins, and rely only on those provided by vim.
This commit is contained in:
19
vimrc
19
vimrc
@@ -11,15 +11,14 @@ endif
|
|||||||
|
|
||||||
call plug#begin('~/.vim/bundle')
|
call plug#begin('~/.vim/bundle')
|
||||||
|
|
||||||
Plug 'Valloric/MatchTagAlways'
|
Plug 'Valloric/MatchTagAlways', { 'for': ['html', 'xml'] }
|
||||||
Plug 'ayuanx/vim-mark-standalone'
|
Plug 'ayuanx/vim-mark-standalone'
|
||||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||||
Plug 'dogrover/vim-pentadactyl'
|
|
||||||
if has("patch-8.0.1453")
|
if has("patch-8.0.1453")
|
||||||
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
|
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
|
||||||
endif
|
endif
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
Plug 'fs111/pydoc.vim', { 'for': 'python' }
|
Plug 'fs111/pydoc.vim', { 'for': 'python' } " adds Pydoc command and K under cursor
|
||||||
Plug 'gryf/dragvisuals'
|
Plug 'gryf/dragvisuals'
|
||||||
Plug 'gryf/pep8-vim', { 'for': 'python' }
|
Plug 'gryf/pep8-vim', { 'for': 'python' }
|
||||||
Plug 'gryf/pylint-vim', { 'for': 'python' }
|
Plug 'gryf/pylint-vim', { 'for': 'python' }
|
||||||
@@ -27,32 +26,26 @@ Plug 'gryf/python-syntax', { 'for': 'python' }
|
|||||||
Plug 'gryf/python.vim', { 'for': 'python' }
|
Plug 'gryf/python.vim', { 'for': 'python' }
|
||||||
Plug 'gryf/pythonhelper', { 'for': 'python' }
|
Plug 'gryf/pythonhelper', { 'for': 'python' }
|
||||||
Plug 'gryf/snipmate.vim'
|
Plug 'gryf/snipmate.vim'
|
||||||
Plug 'gryf/vim-latex-compiler'
|
Plug 'gryf/vim-latex-compiler', { 'for': 'tex' }
|
||||||
Plug 'gryf/wombat256grf'
|
Plug 'gryf/wombat256grf'
|
||||||
Plug 'gryf/zoom.vim'
|
Plug 'gryf/zoom.vim' " control gui font size with '+' or '-; keys.
|
||||||
Plug 'habamax/vim-rst', { 'for': 'rst' }
|
Plug 'habamax/vim-rst', { 'for': 'rst' }
|
||||||
Plug 'honza/vim-snippets'
|
Plug 'honza/vim-snippets'
|
||||||
Plug 'kazuyukitanimura/jsbeautify'
|
|
||||||
Plug 'kien/ctrlp.vim'
|
Plug 'kien/ctrlp.vim'
|
||||||
Plug 'mattn/calendar-vim'
|
|
||||||
Plug 'mikeage/occur.vim'
|
Plug 'mikeage/occur.vim'
|
||||||
Plug 'mileszs/ack.vim'
|
Plug 'mileszs/ack.vim'
|
||||||
Plug 'myhere/vim-nodejs-complete', { 'for': 'javascript' }
|
|
||||||
Plug 'othree/html5.vim', { 'for': 'html' }
|
Plug 'othree/html5.vim', { 'for': 'html' }
|
||||||
Plug 'pangloss/vim-javascript', { 'for': 'javascript' }
|
Plug 'pcaro90/jpythonfold.vim', { 'for': 'python' }
|
||||||
Plug 'pcaro90/jpythonfold.vim'
|
|
||||||
Plug 'preservim/nerdcommenter'
|
Plug 'preservim/nerdcommenter'
|
||||||
Plug 'preservim/tagbar'
|
Plug 'preservim/tagbar'
|
||||||
Plug 'regedarek/ZoomWin'
|
Plug 'regedarek/ZoomWin'
|
||||||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||||||
Plug 'sjl/gundo.vim'
|
Plug 'sjl/gundo.vim'
|
||||||
Plug 'skammer/vim-css-color'
|
Plug 'skammer/vim-css-color', { 'for': 'css' }
|
||||||
Plug 'terryma/vim-multiple-cursors'
|
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-repeat'
|
Plug 'tpope/vim-repeat'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'vim-scripts/DrawIt'
|
Plug 'vim-scripts/DrawIt'
|
||||||
Plug 'vim-scripts/JavaScript-Indent', { 'for': 'javascript' }
|
|
||||||
Plug 'vim-scripts/LanguageTool'
|
Plug 'vim-scripts/LanguageTool'
|
||||||
Plug 'vim-scripts/ShowMarks'
|
Plug 'vim-scripts/ShowMarks'
|
||||||
Plug 'vim-scripts/indentpython', { 'for': 'python' }
|
Plug 'vim-scripts/indentpython', { 'for': 'python' }
|
||||||
|
|||||||
Reference in New Issue
Block a user