diff options
Diffstat (limited to 'vim/vimrc')
| -rw-r--r-- | vim/vimrc | 10 |
1 files changed, 5 insertions, 5 deletions
| @@ -26,9 +26,6 @@ source ~/helper/vim/init/basic.vim | |||
| 26 | " Key mappings | 26 | " Key mappings |
| 27 | source ~/helper/vim/init/keymaps.vim | 27 | source ~/helper/vim/init/keymaps.vim |
| 28 | 28 | ||
| 29 | " UI | ||
| 30 | source ~/helper/vim/init/style.vim | ||
| 31 | |||
| 32 | " Extra config for different contexts | 29 | " Extra config for different contexts |
| 33 | source ~/helper/vim/init/config.vim | 30 | source ~/helper/vim/init/config.vim |
| 34 | 31 | ||
| @@ -36,9 +33,12 @@ source ~/helper/vim/init/config.vim | |||
| 36 | source ~/helper/vim/init/tabsize.vim | 33 | source ~/helper/vim/init/tabsize.vim |
| 37 | 34 | ||
| 38 | if has('nvim') | 35 | if has('nvim') |
| 39 | " For nvim | 36 | " For neovim |
| 40 | source ~/.config/nvim/lazy.lua | 37 | source ~/.config/nvim/lazy.lua |
| 41 | else | 38 | else |
| 42 | " Plugin | 39 | " For vim |
| 43 | source ~/helper/vim/init/plugins.vim | 40 | source ~/helper/vim/init/plugins.vim |
| 41 | source ~/helper/vim/init/style.vim | ||
| 44 | endif | 42 | endif |
| 43 | |||
| 44 | source ~/helper/vim/init/special_highlight.vim | ||