36 lines
768 B
VimL
36 lines
768 B
VimL
|
" =====PLUGINS=====
|
||
|
" Load the plugins
|
||
|
call plug#begin('~/.config/nvim/plugged')
|
||
|
|
||
|
" Create ctags file asynchonously
|
||
|
Plug 'ludovicchabant/vim-gutentags', { 'commit': '31c0ead' }
|
||
|
|
||
|
" Fuzzy file search
|
||
|
Plug 'ctrlpvim/ctrlp.vim'
|
||
|
|
||
|
" Git client within Vim
|
||
|
Plug 'tpope/vim-fugitive'
|
||
|
|
||
|
" Change surrounding quotes, brackets...
|
||
|
Plug 'tpope/vim-surround'
|
||
|
|
||
|
" Comment out lines easily
|
||
|
Plug 'tpope/vim-commentary'
|
||
|
|
||
|
" Powerful auto-complete engine
|
||
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||
|
|
||
|
" Show ctags in sidebar, useful for navigation
|
||
|
Plug 'majutsushi/tagbar'
|
||
|
|
||
|
" Show Git diffs in sidebar
|
||
|
Plug 'airblade/vim-gitgutter'
|
||
|
|
||
|
" Show indentation using thin lines
|
||
|
Plug 'yggdroot/indentline'
|
||
|
|
||
|
" Auto-indent according to PEP8 rules
|
||
|
Plug 'hynek/vim-python-pep8-indent'
|
||
|
|
||
|
call plug#end()
|