Moved VIM plugin config to a separate file. IdeaVimrc & NVIM refers to the new file

This commit is contained in:
Pratik Tripathy
2024-03-09 22:13:04 +05:30
parent 617a620e70
commit fa80a208dd
5 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- Load Plugin configs from VIM
local vim_plugin_config = os.getenv("HOME") .. "/.vim/plugin_config.vim"
if vim.loop.fs_stat(vim_plugin_config) then
vim.cmd("source " .. vim_plugin_config)
end