-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvimrc
executable file
·31 lines (26 loc) · 890 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
runtime! debian.vim
if has("syntax")
syntax on
endif
" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
if has("autocmd")
filetype plugin indent on
endif
let path = expand('%:p:h')
source ~/.vim/vimrc-php/config/helpers.vimrc
source ~/.vim/vimrc-php/config/settings.vimrc
source ~/.vim/vimrc-php/config/plugs.vimrc
source ~/.vim/vimrc-php/config/mappings.vimrc
source ~/.vim/vimrc-php/config/english-keyboard-mappings.vimrc
if has('macunix')
source ~/.vim/vimrc-php/config/macos-mappings.vimrc
else
source ~/.vim/vimrc-php/config/linux-mappings.vimrc
endif
source ~/.vim/vimrc-php/config/colorscheme.vimrc