Merge pull request #4 from BSathvik/vik/startup_time
This commit is contained in:
commit
cb378a6d8c
1 changed files with 3 additions and 3 deletions
|
|
@ -3,12 +3,12 @@ if vim.g.openingh then
|
|||
end
|
||||
vim.g.openingh = true
|
||||
|
||||
require("openingh").setup()
|
||||
local openingh = require("openingh")
|
||||
|
||||
vim.api.nvim_create_user_command("OpenInGHFile", function()
|
||||
require("openingh"):openFile()
|
||||
openingh:openFile()
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("OpenInGHRepo", function()
|
||||
require("openingh"):openRepo()
|
||||
openingh:openRepo()
|
||||
end, {})
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue