Initial Commit

This commit is contained in:
agryphus 2023-04-29 05:40:23 -04:00
commit f2ff7bda11
18 changed files with 342 additions and 0 deletions

18
after/plugin/firenvim.lua Executable file
View file

@ -0,0 +1,18 @@
vim.g.firenvim_config = {
globalSettings = { alt = "all" },
localSettings = {
[".*"] = {
cmdline = "neovim",
content = "text",
priority = 0,
selector = "textarea",
takeover = "never"
}
}
}
-- Prevents scrolling when cursor is near the bottom of the text area
if vim.g.started_by_firenvim == true then
vim.opt.scrolloff = 0
end