1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/firenvim.lua

35 lines
710 B
Lua
Raw Normal View History

2023-01-10 02:38:06 +01:00
local env = require("my.helpers.env")
local K = require("my.keymaps")
2023-01-10 02:38:06 +01:00
local M = {
"glacambre/firenvim", -- vim inside chrome
lazy = false,
cond = env.firenvim.active(),
}
function M.config()
2023-01-10 02:38:06 +01:00
vim.g.firenvim_config = {
localSettings = {
[".*"] = {
filename = "/tmp/firenvim_{hostname}_{pathname}_{selector}_{timestamp}.{extension}",
2023-01-10 02:38:06 +01:00
},
},
}
K.nmap("<C-e>", function()
vim.opt.lines = 100
end, "Expand the neovim window!")
vim.api.nvim_create_autocmd("BufEnter", {
pattern = { "firenvim_localhost_notebooks*.txt" },
callback = function()
vim.opt.filetype = "markdown"
end,
})
-- Disable status line
vim.opt.laststatus = 0
2023-01-10 02:38:06 +01:00
end
return M