-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
19 lines (17 loc) · 758 Bytes
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
""""""""""""""""""""""""""""""""""""""""""
" File configuration of vim
"Author: Natal Ngétal alias Hobbestigrou
"Website: http://erakis.im
"Version: 0.1
""""""""""""""""""""""""""""""""""""""""""
let g:mahewin_vim_repository = expand("~/.vim-mahewin-repository/")
exe 'source ' . g:mahewin_vim_repository . 'bundle.vim'
exe 'source ' . g:mahewin_vim_repository . 'alias.vim'
exe 'source ' . g:mahewin_vim_repository . 'map.vim'
exe 'source ' . g:mahewin_vim_repository . 'documentation.vim'
exe 'source ' . g:mahewin_vim_repository . 'plugins.vim'
exe 'source ' . g:mahewin_vim_repository . 'misc_configuration.vim'
exe 'source ' . g:mahewin_vim_repository . 'common.vim'
if filereadable(glob("~/.vimrc.local"))
exe 'source ' . '~/.vimrc.local'
endif