This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
.nvim/lua/plugins/browser.lua

20 lines
335 B
Lua
Raw Normal View History

2023-12-30 06:01:16 -03:00
return { {
'glacambre/firenvim',
lazy = not vim.g.started_by_firenvim,
build = function()
vim.g.firenvim_config = {
localSettings = {
['.*'] = {
cmdline = 'neovim',
content = 'text',
priority = 0,
selector = 'textare',
takeover = 'never',
}
}
}
vim.fn['firenvim#install'](0);
end,
} }