🐛 fix(nvim): add gh as ensure installed in mason
This commit is contained in:
parent
6bf79a8caa
commit
08d024caf3
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,13 @@
|
||||||
local prefix = "<leader>G"
|
local prefix = "<leader>G"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
{
|
||||||
|
"williamboman/mason.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
opts.ensure_installed = opts.ensure_installed or {}
|
||||||
|
vim.list_extend(opts.ensure_installed, { "gh" })
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"almo7aya/openingh.nvim",
|
"almo7aya/openingh.nvim",
|
||||||
cmd = { "OpenInGHRepo", "OpenInGHFile", "OpenInGHFileLines" },
|
cmd = { "OpenInGHRepo", "OpenInGHFile", "OpenInGHFileLines" },
|
||||||
|
|
Loading…
Add table
Reference in a new issue