mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
15 lines
534 B
VimL
15 lines
534 B
VimL
" 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'
|
|
execute 'source '.rc_dir.'/abbreviations.vim'
|
|
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'
|
|
|