From baaf42995c91e957549f0efa2ea1abe6be20cd80 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 21 Jul 2024 05:37:47 +0200 Subject: Add a message on the installation of firenvim --- lua/ache/plugins/firevim.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 = { -- cgit v1.3-2-g11bf