forked from mpkopec/nvim-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
36 lines (32 loc) · 1.62 KB
/
Copy pathinit.vim
File metadata and controls
36 lines (32 loc) · 1.62 KB
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
30
31
32
33
34
35
36
exec 'source ' . stdpath('config') . '/plugins.vim'
exec 'source ' . stdpath('config') . '/basic-settings.vim'
exec 'source ' . stdpath('config') . '/ftype-settings.vim'
exec 'source ' . stdpath('config') . '/basic-acmds.vim'
exec 'source ' . stdpath('config') . '/abbr.vim'
exec 'source ' . stdpath('config') . '/basic-maps.vim'
exec 'source ' . stdpath('config') . '/leader-maps.vim'
for s:f in glob(stdpath('config') . '/lib/*.vim', 0, 1)
exec 'source ' . s:f
endfor
exec 'source ' . stdpath('config') . '/wsl-clip.vim'
exec 'source ' . stdpath('config') . '/plugconf/firenvim.vim'
exec 'source ' . stdpath('config') . '/plugconf/fugitive.vim'
exec 'source ' . stdpath('config') . '/plugconf/gitgutter.vim'
exec 'source ' . stdpath('config') . '/plugconf/gutentags.vim'
exec 'source ' . stdpath('config') . '/plugconf/highlightyank.vim'
exec 'source ' . stdpath('config') . '/plugconf/jinja.vim'
exec 'source ' . stdpath('config') . '/plugconf/nerdtree.vim'
exec 'source ' . stdpath('config') . '/plugconf/switcher.vim'
exec 'source ' . stdpath('config') . '/plugconf/ultisnips.vim'
exec 'source ' . stdpath('config') . '/plugconf/verilog_systemverilog.vim'
exec 'source ' . stdpath('config') . '/plugconf/vim-easy-align.vim'
exec 'source ' . stdpath('config') . '/plugconf/vim-markdown-toc.vim'
exec 'source ' . stdpath('config') . '/plugconf/vimtex.vim'
if has('nvim')
exec 'source ' . stdpath('config') . '/plugconf/telescope.lua'
exec 'source ' . stdpath('config') . '/plugconf/md_section_number.lua'
endif
if exists('g:vscode')
" VS Code extension
exec 'source ' . stdpath('config') . '/vscode-settings.vim'
endif