Initialize Neovim plugin structure

This commit is contained in:
themodrnhakr 2025-10-02 16:09:45 -05:00
parent 29f84817f8
commit b4672972dc

12
lua/jj_mini_diff/init.lua Normal file
View File

@ -0,0 +1,12 @@
-- jj-mini.diff Neovim plugin
local M = {}
function M.setup(opts)
opts = opts or {}
-- TODO: Implement configuration options
end
-- TODO: Implement core logic for Git signs
return M