Files
config-nvim/lua/plugins/my_ui_tweaks.lua

38 lines
761 B
Lua

return {
-- Flash/fade cursor locator
{
"danilamihailov/beacon.nvim",
opts = {
speed = 1,
width = 30,
min_jump = 2,
},
},
-- Lush: colorscheme creation aid with real-time feedback
{ "rktjmp/lush.nvim" },
-- Darker bg in tokyonight
{ "folke/tokyonight.nvim", opts = { style = "night" } },
-- Install gruvbox as option
{ "ellisonleao/gruvbox.nvim" },
-- My Zenbones tweak for e-ink screens. Requires lush
{ "https://gut.oily.dad/finn/zenbones-theme" },
-- Override default colorscheme
{ "LazyVim/LazyVim", opts = {
-- colorscheme = "catppuccin",
colorscheme = "default",
} },
-- Flash nvim labels
{
"folke/flash.nvim",
opts = {
labels = "hoeadstnbufgmlzxcv",
},
},
}