-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
29 lines (24 loc) · 1.02 KB
/
init.vim
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
if exists('g:vscode')
" VSCode extension
else
" Ordinary NeoVim
"-------------------------------- Core --------------------------------
for f in split(globpath("~/.config/nvim/core", "*.vim"), '\n')
execute "source" f
endfor
"-------------------------------- Plugins --------------------------------
source $HOME/.config/nvim/plugins/vim-plug.vim
"-------------------------------- Themes --------------------------------
source $HOME/.config/nvim/themes/onedark.vim
" source $HOME/.config/nvim/themes/material.vim
" Addtional colors highlighting
" source $HOME/.config/nvim/themes/highlight.vim
"-------------------------------- Configs --------------------------------
for f in split(globpath("~/.config/nvim/configs", "*.vim"), '\n')
execute "source" f
endfor
"-------------------------------- CoC's configs --------------------------------
for f in split(globpath("~/.config/nvim/configs/coc", "*.vim"), '\n')
execute "source" f
endfor
endif