switch to vim-plug and switch back to coc.nvim
This commit is contained in:
parent
b14b7ee733
commit
acc7d47b10
1 changed files with 19 additions and 42 deletions
|
@ -1,84 +1,61 @@
|
||||||
set nocompatible " required
|
call plug#begin('~/.config/nvim/bundle')
|
||||||
filetype off " required
|
|
||||||
|
|
||||||
" set the runtime path to include Vundle and initialize
|
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
|
||||||
let s:editor_root=expand("~/.config/nvim")
|
|
||||||
call vundle#rc(s:editor_root . '/bundle')
|
|
||||||
call vundle#begin()
|
|
||||||
|
|
||||||
" let Vundle manage Vundle, required
|
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
|
||||||
|
|
||||||
" add all your plugins here (note older versions of Vundle
|
|
||||||
" used Bundle instead of Plugin)
|
|
||||||
|
|
||||||
" USEFUL
|
" USEFUL
|
||||||
|
|
||||||
" comment plugin
|
" comment plugin
|
||||||
Plugin 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
|
|
||||||
" brackets management
|
" brackets management
|
||||||
Plugin 'machakann/vim-sandwich'
|
Plug 'machakann/vim-sandwich'
|
||||||
|
|
||||||
" snippets
|
" snippets
|
||||||
Plugin 'SirVer/ultisnips'
|
Plug 'SirVer/ultisnips'
|
||||||
|
|
||||||
" WINDOW MANAGEMENT
|
" WINDOW MANAGEMENT
|
||||||
|
|
||||||
" tmux navigator
|
" tmux navigator
|
||||||
Plugin 'christoomey/vim-tmux-navigator'
|
Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
|
||||||
" winresizer
|
" winresizer
|
||||||
Plugin 'simeji/winresizer'
|
Plug 'simeji/winresizer'
|
||||||
|
|
||||||
" FILE MANAGEMENT
|
" FILE MANAGEMENT
|
||||||
" nert-tree
|
" nert-tree
|
||||||
Plugin 'scrooloose/nerdtree'
|
Plug 'scrooloose/nerdtree'
|
||||||
|
|
||||||
" fzf plugin
|
" fzf plugin
|
||||||
Plugin 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
|
|
||||||
" GIT STUFF
|
" GIT STUFF
|
||||||
" git
|
" git
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
|
|
||||||
" vim gitgutter
|
" vim gitgutter
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
" COLORS
|
" COLORS
|
||||||
" Plastic colorscheme
|
" Plastic colorscheme
|
||||||
Plugin 'aonemd/kuroi.vim'
|
Plug 'aonemd/kuroi.vim'
|
||||||
|
|
||||||
" Color higlighting
|
" Color higlighting
|
||||||
Plugin 'norcalli/nvim-colorizer.lua'
|
Plug 'norcalli/nvim-colorizer.lua'
|
||||||
|
|
||||||
" powerline
|
" powerline
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
|
|
||||||
" LANGUAGE SUPPORT
|
" Coc Nvim
|
||||||
" autocompletion
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plugin 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
||||||
" autocompletion for python
|
|
||||||
Plugin 'deoplete-plugins/deoplete-jedi'
|
|
||||||
" completion from tmux panes
|
|
||||||
Bundle 'wellle/tmux-complete.vim'
|
|
||||||
|
|
||||||
" Linting
|
|
||||||
Plugin 'dense-analysis/ale'
|
|
||||||
|
|
||||||
" nvim-remote
|
" nvim-remote
|
||||||
Plugin 'mhinz/neovim-remote'
|
Plug 'mhinz/neovim-remote'
|
||||||
|
|
||||||
" language packs
|
" language packs
|
||||||
Plugin 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
|
|
||||||
" latex
|
" latex
|
||||||
Plugin 'lervag/vimtex'
|
Plug 'lervag/vimtex'
|
||||||
|
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call plug#end()
|
||||||
filetype plugin indent on " required
|
|
||||||
|
|
||||||
" nvim setup
|
" nvim setup
|
||||||
" syntax
|
" syntax
|
||||||
|
|
Loading…
Add table
Reference in a new issue