configs/home/.config/nvim/init.vim

12 lines
248 B
VimL
Raw Normal View History

2023-03-20 22:53:00 +01:00
" always load these.
runtime common.vim
" check if firenvim is accessing this, load it's specific configs if so.
lua << EOF
if vim.g.started_by_firenvim == true then
vim.cmd('runtime firenvim.vim')
else
vim.cmd('runtime main.vim')
end
EOF