.dotfiles/nvim/plugins.vim
Jidbo 6969c537c9
add nvim language server config
This also removes ale and other auto completion setups.

Note: the neovim nightly build is now required, since the current
release does not support the language server protocol yet.
2021-02-17 21:25:09 +01:00

85 lines
1.3 KiB
VimL

" PLUGINS
call plug#begin('~/.config/nvim/bundle')
" USEFUL
" ===================
" Editor config
Plug 'editorconfig/editorconfig-vim'
" comment plugin
Plug 'tpope/vim-commentary'
" brackets management
Plug 'tpope/vim-surround'
" Lanugage tool
Plug 'dpelle/vim-LanguageTool'
" WINDOW MANAGEMENT
" ===================
" tmux navigator
Plug 'christoomey/vim-tmux-navigator'
" winresizer
Plug 'simeji/winresizer'
" goyo
Plug 'junegunn/goyo.vim'
" FILE MANAGEMENT
" ===================
" nerd-tree
Plug 'scrooloose/nerdtree'
" fzf plugin
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" vimwiki
Plug 'vimwiki/vimwiki'
" GIT STUFF
" ===================
" git
Plug 'tpope/vim-fugitive'
" vim gitgutter
Plug 'airblade/vim-gitgutter'
" COLORS
" ===================
" Plastic colorscheme
Plug 'aonemd/kuroi.vim'
" Color higlighting
Plug 'norcalli/nvim-colorizer.lua'
" powerline
Plug 'vim-airline/vim-airline'
" LANGUAGES
" ===================
" nvim language server
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-lua/completion-nvim'
" Autoformatter
Plug 'sbdchd/neoformat'
" disable latex before loading
let g:polyglot_disabled = ["latex"]
Plug 'sheerun/vim-polyglot'
" latex
Plug 'lervag/vimtex'
" Emmet
Plug 'mattn/emmet-vim'
" All of your Plugins must be added before the following line
call plug#end()