20 lines
376 B
Lua
20 lines
376 B
Lua
return -- firenvim (firefox neovim extension)
|
|
{
|
|
"glacambre/firenvim",
|
|
build = ":call firenvim#install(0)",
|
|
config = function()
|
|
vim.g.firenvim_config = {
|
|
globalSettings = { alt = "all" },
|
|
localSettings = {
|
|
[".*"] = {
|
|
cmdline = "neovim",
|
|
content = "text",
|
|
priority = 0,
|
|
selector = "textarea",
|
|
takeover = "never",
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|