2021-07-23 16:08:03 +00:00
|
|
|
" Let init.vim handle sourcing other more specific
|
|
|
|
" vim configuration files, rather than keeping everything
|
|
|
|
" in a single huge config file
|
|
|
|
|
|
|
|
let config_dir = system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim"')
|
|
|
|
let rc_dir = config_dir.'/rc'
|
|
|
|
execute 'source '.rc_dir.'/base.vim'
|
|
|
|
execute 'source '.rc_dir.'/mappings.vim'
|
2021-07-23 16:33:57 +00:00
|
|
|
execute 'source '.rc_dir.'/abbreviations.vim'
|
2021-07-23 16:08:03 +00:00
|
|
|
execute 'source '.rc_dir.'/autocmd.vim'
|
|
|
|
execute 'source '.rc_dir.'/plugins.vim'
|
|
|
|
" Needs to be below plugins for colorscheme
|
|
|
|
execute 'source '.rc_dir.'/theme.vim'
|
2021-05-11 15:20:46 +00:00
|
|
|
|