-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
63 lines (50 loc) · 1.57 KB
/
vimrc
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
set nocompatible " be iMproved
filetype on " turn it on before off to avoid git message issues
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" Look and feel
Bundle 'altercation/vim-colors-solarized'
Bundle 'Lokaltog/powerline'
Bundle 'surround.vim'
" Git integrations
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-powerline'
" Navigation
Bundle 'scrooloose/nerdtree'
Bundle 'kien/ctrlp.vim'
Bundle 'mileszs/ack.vim'
" Autocompletions
Bundle 'ervandew/supertab'
" Code editing and highlighting
Bundle 'scrooloose/nerdcommenter'
Bundle 'scrooloose/syntastic'
Bundle 'beyondwords/vim-twig'
Bundle 'vim-scripts/Emmet.vim'
Bundle 'Markdown'
Bundle 'vim-less'
Bundle 'pangloss/vim-javascript'
Bundle 'Puppet-Syntax-Highlighting'
Bundle 'bitc/vim-bad-whitespace'
Bundle 'tmhedberg/SimpylFold'
" Bundle 'sleistner/vim-jshint'
Bundle "nvie/vim-flake8"
Bundle "derekwyatt/vim-scala"
filetype plugin indent on " required!
syntax enable
"""""""""""""""""""""""""""""
"Source initialization files
"""""""""""""""""""""""""""""
runtime! init/**.vim
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..