Skip to content

Commit

Permalink
Add Github Actions, fix deps isssue
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Oct 20, 2024
1 parent f0bb9cb commit 3602b0e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
17 changes: 15 additions & 2 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,23 @@ lvim.plugins = {
},
-- setting the keybinding for LazyGit with 'keys' is recommended in
-- order to load the plugin when the command is run for the first time
-- keys = {
-- { "<leader>lg", "<cmd>LazyGit<cr>", desc = "LazyGit" }
-- }
},
{
'topaxi/gh-actions.nvim',
keys = {
{ "<leader>lg", "<cmd>LazyGit<cr>", desc = "LazyGit" }
{ '<leader>gh', '<cmd>GhActions<cr>', desc = 'Open Github Actions' },
},
-- optional, you can also install and use `yq` instead.
-- build = 'make',
---@type GhActionsConfig
opts = {},
dependencies = {
'MunifTanjim/nui.nvim'
}
}
},
-- play also https://www.vim-hero.com/lessons/basic-movement
-- { "ThePrimeagen/vim-be-good" }
-- {
Expand Down
1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ run-shellcheck:

prep-term: prep-kitty
which lazygit || brew install lazygit
which yq || brew install yq

prep-alacritty:
#!/usr/bin/env bash
Expand Down

0 comments on commit 3602b0e

Please sign in to comment.