diff options
author | HampusM <hampus@hampusmat.com> | 2024-01-17 01:02:10 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-01-17 01:02:10 +0100 |
commit | cd6efe97c41be6ec5ccda57b53a835968acfdd79 (patch) | |
tree | 03896977c42b3d86c58134c4fe57195b3d133944 /lua/plugins.lua | |
parent | 635b69ac3f88cacc30a862809d138d072d55ad3b (diff) |
octoocto
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 481bc87..e0a4122 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -14,7 +14,8 @@ return require("packer").startup(function(use) use "lukas-reineke/indent-blankline.nvim" -- Coc - use {"neoclide/coc.nvim", branch = "release"} + -- use {"neoclide/coc.nvim", branch = "release"} + use { "/home/hampus/Projects/coc.nvim", run = "yarn install --frozen-lockfile" } -- Syntax use "tikhomirov/vim-glsl" @@ -35,4 +36,19 @@ return require("packer").startup(function(use) -- Formatting use "alx741/vim-rustfmt" + + use { + "pwntester/octo.nvim", + commit = "c6b008434d684e746a40e443876b646b521cebbf", + requires = { + "nvim-lua/plenary.nvim", + "nvim-telescope/telescope.nvim", + "nvim-tree/nvim-web-devicons", + }, + config = function () + require "octo".setup() + end + } + + use "PhilRunninger/nerdtree-visual-selection" end) |