40 lines
746 B
VimL
40 lines
746 B
VimL
call plug#begin('~/.vim/plugged')
|
|
|
|
" Recommended plugins that I didn't like
|
|
"Plug 'airblade/vim-gitgutter'
|
|
"Plug 'mattn/emmet-vim'
|
|
"Plug 'terryma/vim-multiple-cursors'
|
|
"Plug 'tpope/vim-surround'
|
|
|
|
|
|
" Line numbers
|
|
Plug 'myusuf3/numbers.vim'
|
|
|
|
" File explorer window
|
|
Plug 'scrooloose/nerdtree'
|
|
|
|
" Show open buffers in a tab at top of screen
|
|
Plug 'ap/vim-buftabline'
|
|
Plug 'qpkorr/vim-bufkill'
|
|
|
|
" VCS integration
|
|
Plug 'mhinz/vim-signify'
|
|
|
|
" Code style setup from .editorconfig file
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
Plug 'itchyny/lightline.vim'
|
|
|
|
" Fuzzy search within vim
|
|
Plug 'junegunn/fzf'
|
|
Plug 'junegunn/fzf.vim'
|
|
|
|
" Provide some helpful vim commands for file modification
|
|
Plug 'tpope/vim-eunuch'
|
|
|
|
" Code linter
|
|
Plug 'w0rp/ale'
|
|
|
|
call plug#end()
|
|
|
|
|