Files
gitea.nvim/lua/gitea/config.lua

10 lines
241 B
Lua

local M = {}
M.default_config = {
base_url = nil, -- The plugin attempts to detect from .git config or prompt if not set
token_file = vim.fn.stdpath('config') .. '/.gitea_token',
preview_style = "floating", -- or "split"
}
return M