mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 14:45:17 +00:00
43 lines
1.2 KiB
Lua
43 lines
1.2 KiB
Lua
-- luacheck: globals vim
|
|
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 = {} },
|
|
-- Automatically expand width of the current window.
|
|
-- Maximizes and restore it. And all this with nice animations!
|
|
-- https://github.com/anuvyklack/windows.nvim
|
|
{
|
|
"anuvyklack/windows.nvim",
|
|
dependencies = {
|
|
"anuvyklack/middleclass",
|
|
"anuvyklack/animation.nvim",
|
|
},
|
|
config = function()
|
|
vim.o.winwidth = 10
|
|
vim.o.winminwidth = 10
|
|
vim.o.equalalways = false
|
|
require("windows").setup()
|
|
end,
|
|
},
|
|
}
|