-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvundles.vim
More file actions
64 lines (44 loc) · 1.3 KB
/
vundles.vim
File metadata and controls
64 lines (44 loc) · 1.3 KB
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
set nocompatible " be iMproved
filetype off " required!
set rtp+=/home/javipolo/.vim/bundle/vundle/
call vundle#begin()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" automagically tabulate in columns
Bundle 'godlygeek/tabular'
" integrate vim with git
Bundle 'tpope/vim-fugitive'
" manage brackets, tags, quotes and everything that surrounds text
Bundle 'tpope/vim-surround'
" enables to use . in lots of places
Bundle 'tpope/vim-repeat'
" easy navigation through quickfix list, among other things
Bundle 'tpope/vim-unimpaired'
" comment out stuff
Bundle 'tpope/vim-commentary'
" Manage sessions
Plugin 'tpope/vim-obsession'
" CtrlP to jump faster through files
Bundle 'kien/ctrlp.vim'
" new text object q for matching any quotes
Bundle 'kana/vim-textobj-user'
Bundle 'beloglazov/vim-textobj-quotes'
" Linting
" Bundle 'scrooloose/syntastic'
Plugin 'w0rp/ale'
" Nice vertical line to match indentation
Bundle 'Yggdroot/indentLine'
" Configure status line
Plugin 'itchyny/lightline.vim'
" Terraform integration
Plugin 'hashivim/vim-terraform'
" Golang support
Plugin 'fatih/vim-go'
" Glow Markdown Viewer
Plugin 'ellisonleao/glow.nvim'
Plugin 'junegunn/fzf'
Plugin 'junegunn/fzf.vim'
" NeoVim specific
Plugin 'nvim-treesitter/nvim-treesitter'
call vundle#end()