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
|
end
|
||||||
vim.g.openingh = true
|
vim.g.openingh = true
|
||||||
|
|
||||||
require("openingh").setup()
|
local openingh = require("openingh")
|
||||||
|
|
||||||
vim.api.nvim_create_user_command("OpenInGHFile", function()
|
vim.api.nvim_create_user_command("OpenInGHFile", function()
|
||||||
require("openingh"):openFile()
|
openingh:openFile()
|
||||||
end, {})
|
end, {})
|
||||||
|
|
||||||
vim.api.nvim_create_user_command("OpenInGHRepo", function()
|
vim.api.nvim_create_user_command("OpenInGHRepo", function()
|
||||||
require("openingh"):openRepo()
|
openingh:openRepo()
|
||||||
end, {})
|
end, {})
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue