--[ -- Edit a Web text edit within neovim ! --] return { "glacambre/firenvim", -- Lazy load firenvim -- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297 lazy = not vim.g.started_by_firenvim, build = function() 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 = { globalSettings = { alt = "all" }, localSettings = { [".*"] = { cmdline = "neovim", content = "text", priority = 0, selector = "textarea", takeover = "never", }, }, } vim.g.firenvim_config.localSettings[".*"] = { takeover = "never" } end, }