stylua no special config;

This commit is contained in:
Barrett Ruth 2025-09-11 23:59:02 -05:00
parent 35f8727b85
commit 0636757839
7 changed files with 262 additions and 309 deletions

View file

@ -1,19 +1,19 @@
local M = {}
M.defaults = {
template_dir = nil,
contests = {
atcoder = { cpp_version = 23 },
codeforces = { cpp_version = 23 },
cses = { cpp_version = 20 },
icpc = { cpp_version = 20 },
usaco = { cpp_version = 17 },
},
snippets = {},
template_dir = nil,
contests = {
atcoder = { cpp_version = 23 },
codeforces = { cpp_version = 23 },
cses = { cpp_version = 20 },
icpc = { cpp_version = 20 },
usaco = { cpp_version = 17 },
},
snippets = {},
}
function M.setup(user_config)
return vim.tbl_deep_extend('force', M.defaults, user_config or {})
return vim.tbl_deep_extend("force", M.defaults, user_config or {})
end
return M