From 3fc7f1ceb91c820578350d19dd1112202de370f7 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sun, 2 Oct 2022 14:26:17 +0200 Subject: [PATCH] feat(nvim): add Octo plugin --- nvim/after/plugin/octo.lua | 7 +++++++ nvim/lua/kogakure/plugins.lua | 1 + 2 files changed, 8 insertions(+) create mode 100644 nvim/after/plugin/octo.lua diff --git a/nvim/after/plugin/octo.lua b/nvim/after/plugin/octo.lua new file mode 100644 index 0000000..8081bc3 --- /dev/null +++ b/nvim/after/plugin/octo.lua @@ -0,0 +1,7 @@ +-- Octo.nvim – https://github.com/pwntester/octo.nvim +local status_ok, octo = pcall(require, "octo") +if not status_ok then + return +end + +octo.setup() diff --git a/nvim/lua/kogakure/plugins.lua b/nvim/lua/kogakure/plugins.lua index 1e0d1fc..fd37dcf 100644 --- a/nvim/lua/kogakure/plugins.lua +++ b/nvim/lua/kogakure/plugins.lua @@ -127,6 +127,7 @@ return packer.startup(function(use) use("elijahmanor/export-to-vscode.nvim") -- Export active Buffers to Visual Studio Code use("bogado/file-line") -- Jump directly to line in file with 'nvim index.html:20' use("ruanyl/vim-gh-line") -- Open current line in GitHub + use("pwntester/octo.nvim") -- GitHub in Neovim use("nvim-pack/nvim-spectre") -- Search and replace use("folke/zen-mode.nvim") -- Zen Mode (2) use("tpope/vim-eunuch") -- UNIX Shell commands