feat: Initial commit with basic commands and first functionalities

This commit is contained in:
NicolasGB
2025-06-24 17:57:55 +02:00
commit 5df7f4f0e5
5 changed files with 560 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
local M = {}
local cmd = require("jj.cmd")
M.picker_config = {
snacks = {
layout = "horizontal",
},
}
--- Jujutsu plugin configuration
--- @class jj.Config
M.config = {
-- Default configuration
}
--- Setup the plugin
--- @param opts table: Options to configure the plugin
function M.setup(opts)
M.config = vim.tbl_deep_extend("force", M.config, opts or {})
cmd.register_command()
end
return M