Add octo.nvim and hybrid colorscheme

This commit is contained in:
2024-01-18 14:06:25 -05:00
parent 9e77818596
commit 6ed8ce679e
3 changed files with 66 additions and 44 deletions

View File

@@ -104,6 +104,11 @@ return {
vim.g.kanagawabones = opts
end,
},
{
"HoNamDuong/hybrid.nvim",
lazy = false,
opts = {},
},
{
-- My own colorscheme, aka. thallada/farout.nvim
dir = "~/farout.nvim/",

15
lua/plugins/octo.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
"pwntester/octo.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
-- OR 'ibhagwan/fzf-lua',
"nvim-tree/nvim-web-devicons",
},
cmd = {
"Octo",
},
config = function()
require("octo").setup()
end,
}