1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/firevim.lua
Matei Adriel 01ee066c62 Backup
2022-11-14 01:16:10 +01:00

14 lines
219 B
Lua

local M = {}
function M.setup()
vim.g.firenvim_config = {
localSettings = {
['.*'] = {
filename = '/tmp/firevim_{hostname}_{pathname%10}_{timestamp%32}.{extension}',
}
}
}
end
return M