-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.vim
70 lines (49 loc) · 1.35 KB
/
plugins.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Dates
Plugin 'tpope/vim-speeddating'
" Bracket Surround
Plugin 'tpope/vim-surround'
" Comment stuff out
Plugin 'tpope/vim-commentary'
" Git gutter
Plugin 'airblade/vim-gitgutter'
" Git wrapper
Plugin 'tpope/vim-fugitive'
" Search for, substitute, and abbreviate multiple variants of a word
Plugin 'tpope/vim-abolish'
" File tree
Plugin 'scrooloose/nerdtree'
" Disables search highlighting when you are done searching
Plugin 'romainl/vim-cool'
" Python indentation
Plugin 'hynek/vim-python-pep8-indent'
" LISP
Plugin 'neoclide/coc.nvim', {'branch': 'release'}
" Linting
Plugin 'dense-analysis/ale'
" Color schemes
Plugin 'chriskempson/base16-vim'
" Tmux/vim pane navigation
Plugin 'christoomey/vim-tmux-navigator'
" Fuzzy Finder
Plugin 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plugin 'junegunn/fzf.vim'
Plugin 'airblade/vim-rooter'
" Status line
Plugin 'itchyny/lightline.vim'
" Wiki
Plugin 'vimwiki/vimwiki'
" Terminal
Plugin 'voldikss/vim-floaterm'
" See what keys do like in emacs
Plugin 'liuchengxu/vim-which-key'
" JS syntax
Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx'
" Keep Plugin commands between vundle#begin/end.
call vundle#end()
filetype plugin indent on