diff options
| -rw-r--r-- | lua/ache/plugins/firevim.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/ache/plugins/firevim.lua b/lua/ache/plugins/firevim.lua index 772dc4e..73ae7ab 100644 --- a/lua/ache/plugins/firevim.lua +++ b/lua/ache/plugins/firevim.lua @@ -5,7 +5,11 @@ return { -- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297 lazy = not vim.g.started_by_firenvim, build = function() - vim.fn["firenvim#install"](0) + if vim.g.started_by_firenvim then + vim.fn["firenvim#install"](0) + else + print("Must install by hand (set lazy = false then run the if case)") + end end, config = function() vim.g.firenvim_config = { |