chore: initial commit
This commit is contained in:
commit
ed8c3dde6c
6 changed files with 56 additions and 0 deletions
15
plugin/openingh.lua
Normal file
15
plugin/openingh.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
if vim.g.openingh then
|
||||
return
|
||||
end
|
||||
vim.g.openingh = true
|
||||
|
||||
require("openingh").setup(true)
|
||||
|
||||
vim.api.nvim_create_user_command("OpenInGHFile", function()
|
||||
require("openingh").openFile()
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("OpenInGHRepo", function()
|
||||
require("openingh"):openRepo()
|
||||
end, {})
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue