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

16 lines
252 B
Lua
Raw Normal View History

2022-10-09 03:28:51 +02:00
local M = {}
function M.setup()
vim.g.firenvim_config = {
localSettings = {
['.*'] = {
filename = '/tmp/firevim_{hostname}_{pathname%10}_{timestamp%32}.{extension}',
}
}
}
print("Initialized firenvim")
end
return M