mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
26 lines
712 B
Lua
26 lines
712 B
Lua
return {
|
|
-- The theme of choise, catppuccin
|
|
-- https://github.com/catppuccin/nvim
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
enabled = true,
|
|
config = function()
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
opts = {
|
|
flavour = "mocha",
|
|
},
|
|
},
|
|
-- Getting you where you want with the fewest keystrokes.
|
|
-- https://github.com/ThePrimeagen/harpoon
|
|
{ "ThePrimeagen/harpoon" },
|
|
-- Close buffer without messing up with the window.
|
|
-- https://github.com/famiu/bufdelete.nvim
|
|
{ "famiu/bufdelete.nvim" },
|
|
-- Neovim plugin for locking a buffer to a window
|
|
-- https://github.com/stevearc/stickybuf.nvim
|
|
{ "stevearc/stickybuf.nvim", opts = {} },
|
|
}
|