47 lines
1.3 KiB
Lua
47 lines
1.3 KiB
Lua
return {
|
|
-- {
|
|
-- "ellisonleao/gruvbox.nvim",
|
|
-- config = function()
|
|
-- vim.cmd([[colorscheme gruvbox]])
|
|
-- end
|
|
-- },
|
|
{
|
|
"rebelot/kanagawa.nvim",
|
|
config = function()
|
|
vim.cmd [[colorscheme kanagawa]]
|
|
end
|
|
}, {
|
|
'akinsho/bufferline.nvim',
|
|
version = "*",
|
|
dependencies = 'nvim-tree/nvim-web-devicons',
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("bufferline").setup()
|
|
end
|
|
},{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("lualine").setup()
|
|
end
|
|
}, {
|
|
"folke/todo-comments.nvim",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
config = function()
|
|
require('todo-comments').setup({})
|
|
|
|
vim.keymap.set("n", "]t", function()
|
|
require("todo-comments").jump_next()
|
|
end, { desc = "Next todo comment" })
|
|
|
|
vim.keymap.set("n", "[t", function()
|
|
require("todo-comments").jump_prev()
|
|
end, { desc = "Previous todo comment" })
|
|
end
|
|
},{
|
|
"folke/which-key.nvim",
|
|
event = "VeryLazy",
|
|
}
|
|
}
|