nvim: init.com: Drop some more unneeded plugins & rearrange

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2020-05-09 17:24:38 +05:30
parent f763976fbf
commit ccfab23987

View file

@ -14,15 +14,10 @@ Plug 'axelf4/vim-strip-trailing-whitespace'
Plug 'ap/vim-buftabline' Plug 'ap/vim-buftabline'
" Manage Project sessions " Manage Project sessions
Plug 'thaerkh/vim-workspace' Plug 'thaerkh/vim-workspace'
" Commenter
Plug 'tpope/vim-commentary'
" Theme " Theme
Plug 'nanotech/jellybeans.vim' Plug 'nanotech/jellybeans.vim'
" Syntax highlighting " Syntax highlighting
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
" Autoload and read from dish if file changes
Plug 'tmux-plugins/vim-tmux-focus-events'
Plug 'wellle/tmux-complete.vim'
" For LaTeX support " For LaTeX support
Plug 'lervag/vimtex' Plug 'lervag/vimtex'
" Git support " Git support
@ -39,9 +34,7 @@ Plug 'sakhnik/nvim-gdb', { 'do': ':UpdateRemotePlugins' }
" Haskell " Haskell
Plug 'ndmitchell/ghcid', { 'rtp': 'plugins/nvim' } Plug 'ndmitchell/ghcid', { 'rtp': 'plugins/nvim' }
Plug 'Twinside/vim-hoogle', { 'for': 'haskell' } Plug 'Twinside/vim-hoogle', { 'for': 'haskell' }
Plug 'hspec/hspec.vim'
Plug 'pbrisbin/vim-syntax-shakespeare' Plug 'pbrisbin/vim-syntax-shakespeare'
Plug 'zenzike/vim-haskell-unicode', { 'for': 'haskell' }
Plug 'godlygeek/tabular', { 'for': 'haskell' } Plug 'godlygeek/tabular', { 'for': 'haskell' }
Plug 'Twinside/vim-haskellFold' Plug 'Twinside/vim-haskellFold'
" Purescript " Purescript
@ -63,6 +56,7 @@ Plug 'deoplete-plugins/deoplete-jedi', { 'for': 'python' }
Plug 'sebastianmarkow/deoplete-rust', { 'for': 'rust' } Plug 'sebastianmarkow/deoplete-rust', { 'for': 'rust' }
Plug 'Shougo/neco-syntax' Plug 'Shougo/neco-syntax'
Plug 'deoplete-plugins/deoplete-tag' Plug 'deoplete-plugins/deoplete-tag'
Plug 'wellle/tmux-complete.vim'
" Neo/Async stuff " Neo/Async stuff
Plug 'sbdchd/neoformat' Plug 'sbdchd/neoformat'
Plug 'neomake/neomake' Plug 'neomake/neomake'
@ -83,11 +77,13 @@ Plug 'wellle/targets.vim'
Plug 'tpope/vim-surround' Plug 'tpope/vim-surround'
Plug 'junegunn/vim-easy-align' Plug 'junegunn/vim-easy-align'
Plug 'tommcdo/vim-exchange' Plug 'tommcdo/vim-exchange'
" Absolute essentials miscellaneous " Tim pope essentials
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-repeat' Plug 'tpope/vim-repeat'
Plug 'tpope/vim-eunuch' Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-sleuth' Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-vinegar' Plug 'tpope/vim-vinegar'
" Show indentation levels
Plug 'Yggdroot/indentLine' Plug 'Yggdroot/indentLine'
" Floating terminal " Floating terminal
Plug 'voldikss/vim-floaterm' Plug 'voldikss/vim-floaterm'