-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.vimrc
51 lines (41 loc) · 1.02 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
syntax on
set t_Co=256
color mango
set nocompatible " be iMproved
filetype off " required!
" Use Tim Pope's pathogen
execute pathogen#infect()
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vungle manage Vundle
" required!
Plugin 'gmarik/vundle'
" My Plugins here:
"
" original repos on github
Plugin 'guileen/vim-node'
" vim-scripts repos
Plugin 'L9'
" non github repos
Plugin 'git://git.wincent/com/command-t.git'
" ...
"Plugin 'Floobits'
filetype plugin on " PLEASE PLEASE PLEASE
filetype plugin indent on " required!
"
" Brief help
" :PluginList - list configured bundles
" :PluginInstall(!) - install(update) bundles
" :PluginSearch(!) foo - search(or refresh cache first) for foo
" :PluginClean(!) - confirm(or auto-approve) remove of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Plugin command are not allowed..
" syntax highlighting
set t_Co=16
syntax on
set tabstop=4
set shiftwidth=4
set ruler
set background=dark
colorscheme solarized