Skip to content

Commit 4c9dcc2

Browse files
committed
Add colorschemes and bufjump
1 parent e30ba2e commit 4c9dcc2

File tree

1 file changed

+29
-16
lines changed

1 file changed

+29
-16
lines changed

lua/custom/plugins/init.lua

Lines changed: 29 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ return {
1111
{ 'tpope/vim-unimpaired' },
1212
{ 'tpope/vim-rsi' },
1313
{ 'sindrets/diffview.nvim' },
14+
{ 'rebelot/kanagawa.nvim' },
15+
{ 'EdenEast/nightfox.nvim' },
16+
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
1417
-- { 'tpope/vim-fugitive' },
1518
{
1619
'stevearc/oil.nvim',
@@ -27,22 +30,6 @@ return {
2730
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
2831
end,
2932
},
30-
-- {
31-
-- 'ray-x/starry.nvim',
32-
-- config = function()
33-
-- require('starry').setup()
34-
-- -- require('starry.functions').change_style 'palenight'
35-
-- end,
36-
-- },
37-
-- {
38-
-- 'luckasRanarison/nvim-devdocs',
39-
-- dependencies = {
40-
-- 'nvim-lua/plenary.nvim',
41-
-- 'nvim-telescope/telescope.nvim',
42-
-- 'nvim-treesitter/nvim-treesitter',
43-
-- },
44-
-- opts = {},
45-
-- },
4633
{
4734
'gbprod/yanky.nvim',
4835
opts = {
@@ -66,6 +53,32 @@ return {
6653
require('telescope').load_extension 'frecency'
6754
end,
6855
},
56+
{
57+
'kwkarlwang/bufjump.nvim',
58+
config = function()
59+
require('bufjump').setup {
60+
forward_key = ']b',
61+
backward_key = '[b',
62+
}
63+
end,
64+
},
65+
-- { 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' },
66+
-- {
67+
-- 'ray-x/starry.nvim',
68+
-- config = function()
69+
-- require('starry').setup()
70+
-- -- require('starry.functions').change_style 'palenight'
71+
-- end,
72+
-- },
73+
-- {
74+
-- 'luckasRanarison/nvim-devdocs',
75+
-- dependencies = {
76+
-- 'nvim-lua/plenary.nvim',
77+
-- 'nvim-telescope/telescope.nvim',
78+
-- 'nvim-treesitter/nvim-treesitter',
79+
-- },
80+
-- opts = {},
81+
-- },
6982
-- {
7083
-- 'mangelozzi/nvim-rgflow.lua',
7184
-- config = function()

0 commit comments

Comments
 (0)