1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

make firenvim work again

1. fix build issue
2. fix PATH env issue
This commit is contained in:
jdhao 2024-07-31 01:08:50 +02:00
parent 719fbfc1ab
commit 6e137fe9a3

View File

@ -15,6 +15,12 @@ end
vim.opt.rtp:prepend(lazypath)
-- check if firenvim is active
-- macOS will reset the PATH when firenvim starts a nvim process, causing the PATH variable to change unexpectedly.
-- Here we are trying to get the correct PATH and use it for firenvim.
-- See also https://github.com/glacambre/firenvim/blob/master/TROUBLESHOOTING.md#make-sure-firenvims-path-is-the-same-as-neovims
local path_env = vim.env.PATH
local prologue = string.format('export PATH="%s"', path_env)
local firenvim_not_active = function()
return not vim.g.started_by_firenvim
end
@ -419,17 +425,13 @@ local plugin_specs = {
{
"glacambre/firenvim",
enabled = function()
if vim.g.is_win or vim.g.is_mac then
return true
end
return false
local result = vim.g.is_win or vim.g.is_mac
return result
end,
build = function()
vim.fn["firenvim#install"](0)
end,
lazy = true,
-- it seems that we can only call the firenvim function directly.
-- Using vim.fn or vim.cmd to call this function will fail.
build = string.format(":call firenvim#install(0, '%s')", prologue)
},
-- Debugger plugin
{
"sakhnik/nvim-gdb",