forked from tagliati/vimfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
54 lines (43 loc) · 1007 Bytes
/
.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
set term=builtin_ansi
"Setting VIMHOME
let $VIMHOME = $HOME."/.vim"
"Setting PYTHONPATH
let $PYTHONPATH .= ":".$VIMHOME."/python"
"Loading bundle plugins
call pathogen#runtime_append_all_bundles()
syntax on
filetype indent on
filetype plugin on
"Hidden mode
set hidden
set number
"Setting up tab settings
set tabstop=4
set shiftwidth=4
set softtabstop=4
set tabpagemax=20
set showtabline=4
set autoindent
set expandtab
set smartindent
set smarttab
set wildmenu
set wildmode=list:longest
"Increase HTML indent
let g:html_indent_inctags="html,head,body,tbody"
source $VIMHOME/modules/django.vim
source $VIMHOME/modules/go.vim
source $VIMHOME/modules/make.vim
source $VIMHOME/modules/mapping.vim
source $VIMHOME/modules/markdown.vim
source $VIMHOME/modules/php.vim
source $VIMHOME/modules/python.vim
source $VIMHOME/modules/ruby.vim
if has("gui_running")
"Colorscheme
colorscheme desert
"guifont
set guifont=Monaco:h16
set guioptions=egmt
set fuoptions=maxvert,maxhorz
endif