Mercurial > dotfiles
comparison dot_config/nvim/init.vim @ 319:b93f12d23fbd
Rename init.lua to config.lua
init.lua is now automatically sourced, and runs before init.vim causing
issues like lspconfig that cannot be found.
Renaming to something that will not be sourced automatically and
manually load it from init.vim when all plugins are loaded
author | Zeger Van de Vannet <zegervdv@me.com> |
---|---|
date | Thu, 17 Dec 2020 17:49:14 +0100 |
parents | 7d73e664f702 |
children | 4daaf43a2b28 |
comparison
equal
deleted
inserted
replaced
318:93b8df942a20 | 319:b93f12d23fbd |
---|---|
1242 \ '*': 'tmux save-buffer -', | 1242 \ '*': 'tmux save-buffer -', |
1243 \ }, | 1243 \ }, |
1244 \ 'cache_enabled': 1, | 1244 \ 'cache_enabled': 1, |
1245 \ } | 1245 \ } |
1246 | 1246 |
1247 luafile ~/.config/nvim/init.lua | 1247 luafile ~/.config/nvim/config.lua |
1248 | 1248 |
1249 " Load local vimrc | 1249 " Load local vimrc |
1250 if filereadable($HOME . '/.vimrc.local') | 1250 if filereadable($HOME . '/.vimrc.local') |
1251 source ~/.vimrc.local | 1251 source ~/.vimrc.local |
1252 endif | 1252 endif |