.dotfiles/nvim/plugins.vim

86 lines
1.4 KiB
VimL
Raw Normal View History

2020-10-25 17:51:05 +01:00
" PLUGINS
call plug#begin('~/.config/nvim/bundle')
" USEFUL
2020-10-25 18:15:53 +01:00
" ===================
2020-10-25 17:51:05 +01:00
" Editor config
Plug 'editorconfig/editorconfig-vim'
" brackets management
Plug 'tpope/vim-surround'
" WINDOW MANAGEMENT
2020-10-25 18:15:53 +01:00
" ===================
2020-10-25 17:51:05 +01:00
" tmux navigator
Plug 'christoomey/vim-tmux-navigator'
" winresizer
Plug 'simeji/winresizer'
" goyo
Plug 'junegunn/goyo.vim'
" FILE MANAGEMENT
2020-10-25 18:15:53 +01:00
" ===================
2020-10-25 17:51:05 +01:00
" nerd-tree
Plug 'preservim/nerdtree'
" Icons
Plug 'ryanoasis/vim-devicons'
2020-10-25 17:51:05 +01:00
" fzf plugin
2021-12-15 12:29:34 +01:00
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
2020-10-25 17:51:05 +01:00
" vimwiki
Plug 'vimwiki/vimwiki'
" GIT STUFF
2020-10-25 18:15:53 +01:00
" ===================
2020-10-25 17:51:05 +01:00
" git
Plug 'tpope/vim-fugitive'
" vim gitgutter
Plug 'airblade/vim-gitgutter'
" COLORS
2020-10-25 18:15:53 +01:00
" ===================
2020-10-25 17:51:05 +01:00
" Plastic colorscheme
2021-09-05 21:40:28 +02:00
Plug 'jidbo/kuroi.vim'
2020-10-25 17:51:05 +01:00
" Color higlighting
Plug 'norcalli/nvim-colorizer.lua'
" powerline
Plug 'vim-airline/vim-airline'
2020-10-25 18:15:53 +01:00
" LANGUAGES
" ===================
2021-12-15 12:31:17 +01:00
" nvim completion
Plug 'neovim/nvim-lspconfig'
2021-12-15 12:31:17 +01:00
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'
2020-10-25 18:15:53 +01:00
2021-09-05 21:42:53 +02:00
" treesitter
2021-12-15 12:29:34 +01:00
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
2020-10-25 17:51:05 +01:00
" latex
Plug 'lervag/vimtex'
" All of your Plugins must be added before the following line
call plug#end()