13 lines
177 B
Lua
Raw Normal View History

2023-01-05 16:24:50 +08:00
local M = {}
2023-01-09 21:30:16 +08:00
2023-01-05 16:24:50 +08:00
local buf_opts = {
}
local buf = vim.api.nvim_create_buf(false, true)
M.buf = buf
2023-01-09 21:30:16 +08:00
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
2023-01-05 16:24:50 +08:00
return M