diff options
| author | ache <ache@ache.one> | 2024-07-21 05:37:47 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2024-07-21 05:37:47 +0200 |
| commit | baaf42995c91e957549f0efa2ea1abe6be20cd80 (patch) | |
| tree | 9c1c0bd16661bf1196821458d8dbaf00bf10f97d /lua/ache | |
| parent | Init commit (diff) | |
Add a message on the installation of firenvim
Diffstat (limited to 'lua/ache')
| -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 = { |