feat: first implementation for issues and pull requests

This commit is contained in:
2024-12-29 20:50:50 +01:00
parent dd6843091b
commit f46f60b723
13 changed files with 1248 additions and 859 deletions

10
plugin/gitea.vim Normal file
View File

@@ -0,0 +1,10 @@
" Automatically load and set up gitea.nvim on startup
if exists('g:loaded_gitea_nvim')
finish
endif
let g:loaded_gitea_nvim = 1
lua << EOF
-- Call setup (with default or user config) so the :Gitea command is registered
require('gitea').setup()
EOF