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

38 lines
761 B
Lua
Raw Normal View History

2024-09-05 00:59:53 -07:00
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" },
2024-09-05 00:59:53 -07:00
-- Darker bg in tokyonight
{ "folke/tokyonight.nvim", opts = { style = "night" } },
-- Install gruvbox as option
{ "ellisonleao/gruvbox.nvim" },
2024-09-18 13:51:30 -07:00
-- 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",
} },
2024-09-18 13:51:30 -07:00
-- Flash nvim labels
{
"folke/flash.nvim",
opts = {
labels = "hoeadstnbufgmlzxcv",
},
},
2024-09-05 00:59:53 -07:00
}