" 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' " Snippets Plug 'SirVer/ultisnips' " 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' " language packs " disable latex before loading let g:polyglot_disabled = ["latex"] Plug 'sheerun/vim-polyglot' " latex Plug 'lervag/vimtex' " Linting Plug 'dense-analysis/ale' " Emmet Plug 'mattn/emmet-vim' " All of your Plugins must be added before the following line call plug#end()