.dotfiles/nvim/plugins.vim
2022-02-22 22:33:45 +01:00

85 lines
1.4 KiB
VimL

" PLUGINS
call plug#begin('~/.config/nvim/bundle')
" USEFUL
" ===================
" Editor config
Plug 'editorconfig/editorconfig-vim'
" brackets management
Plug 'tpope/vim-surround'
" WINDOW MANAGEMENT
" ===================
" tmux navigator
Plug 'christoomey/vim-tmux-navigator'
" winresizer
Plug 'simeji/winresizer'
" goyo
Plug 'junegunn/goyo.vim'
" FILE MANAGEMENT
" ===================
" nerd-tree
Plug 'preservim/nerdtree'
" Icons
Plug 'ryanoasis/vim-devicons'
" fzf plugin
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
" vimwiki
Plug 'vimwiki/vimwiki'
" GIT STUFF
" ===================
" git
Plug 'tpope/vim-fugitive'
" vim gitgutter
Plug 'airblade/vim-gitgutter'
" COLORS
" ===================
" Plastic colorscheme
Plug 'jidbo/kuroi.vim'
" Color higlighting
Plug 'norcalli/nvim-colorizer.lua'
" powerline
Plug 'vim-airline/vim-airline'
" LANGUAGES
" ===================
" nvim completion
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp'
Plug 'SirVer/ultisnips'
Plug 'quangnguyen30192/cmp-nvim-ultisnips'
" Autoformatter
Plug 'sbdchd/neoformat'
" treesitter
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
" latex
Plug 'lervag/vimtex'
" All of your Plugins must be added before the following line
call plug#end()