-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
20 lines (17 loc) · 771 Bytes
/
init.vim
File metadata and controls
20 lines (17 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
let $CONFIG_DIR= "~/.config/nvim/"
let $VIMRC = $CONFIG_DIR . "/init.vim"
let $MYVIMDIR = "~/.nvim_settings/"
function! s:source_file(path, ...)
let abspath = resolve($MYVIMDIR . '/' . a:path)
execute 'source' fnameescape(abspath)
endfunction
call s:source_file("vimscripts/generated.vim")
call s:source_file("vimscripts/mappings.vim")
call s:source_file("vimscripts/global_settings.vim")
call s:source_file("vimscripts/installs.vim")
call s:source_file("vimscripts/plugins/solarized8.vim")
call s:source_file("vimscripts/plugins/coc_settings.vim")
call s:source_file("vimscripts/plugins/denite.vim")
call s:source_file("vimscripts/plugins/nerdtree.vim")
call s:source_file("vimscripts/plugins/airline.vim")
call s:source_file("vimscripts/plugins/vimspector.vim")