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

12 lines
276 B
VimL
Raw Normal View History

2023-03-20 22:53:00 +01:00
" 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')
2023-06-16 22:58:38 +02:00
vim.cmd('runtime common.vim')
2023-03-20 22:53:00 +01:00
else
2023-06-16 22:58:38 +02:00
vim.cmd('runtime common.vim')
2023-03-20 22:53:00 +01:00
vim.cmd('runtime main.vim')
end
2023-06-16 22:58:38 +02:00
2023-03-20 22:53:00 +01:00
EOF