Files
gitea.nvim/plugin/gitea.vim

10 lines
250 B
VimL

" 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