goodhumored d15f254996 many nvim changes
nvim file structure updated
nvim luasnippets configured properly
2024-12-28 13:49:08 +03:00

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,
}