-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.vimrc
More file actions
46 lines (39 loc) · 739 Bytes
/
Copy path.vimrc
File metadata and controls
46 lines (39 loc) · 739 Bytes
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
" @desc VIM settings
" @author faeb187
"
" GENERAL
"
set fileencodings=utf-8
set pastetoggle=<F2>
"
" WEBDEV
"
syntax on
set number
set autoindent
set t_ZH=[3m
set t_ZR=[23m
set t_Co=256
highlight OverLength ctermbg=red ctermfg=white guibg=#592929
"
" SOLARIZED SCHEME
"
let g:solarized_termcolors=256
set background=dark
colo solarized
"
" COMMENTS ITALIC
"
highlight Comment cterm=italic
"
" STYLEGUIDE METEOR
"
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
match OverLength /\%>80v.\+/
" PATHOGEN
execute pathogen#infect()
" COFFEESCRIPT SYNTAX
filetype plugin indent on