forked from jou/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.symlink
58 lines (42 loc) · 981 Bytes
/
vimrc.symlink
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
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
syntax on
set nocompatible
set ls=2
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set scrolloff=3
set showcmd
set title
set ttyfast
set modeline
set modelines=3
set incsearch
set cursorline
filetype plugin on
filetype plugin indent on
if filereadable($HOME."/.vimrc-local.vim")
source $HOME/.vimrc-local.vim
endif
set nofoldenable
let php_folding = 1
" SuperTab settigns
let g:SuperTabDefaultCompletionType = "context"
let g:SuperTabDefaultCompletionTypeDiscovery = [
\ "&completefunc:<c-x><c-u>",
\ "&omnifunc:<c-x><c-o>",
\ ]
let g:SuperTabLongestHighlight = 1
" Eclim settings
" 'open' on OSX will open the url in the default browser without issue
let g:EclimBrowser='open'
let g:EclimSignLevel = 2
" Tagbar settings
map <leader>g :TagbarToggle<CR>
let g:tagbar_type_javascript = {
\ 'ctagsbin' : 'jsctags'
\ }
let g:tagbar_autoclose = 1
let g:tagbar_autofocus = 1