config-nvim/lua/plugins/my_ui_tweaks.lua

26 lines
429 B
Lua

return {
-- Flash/fade cursor locator
{
"danilamihailov/beacon.nvim",
opts = {
speed = 1,
width = 30,
min_jump = 2,
},
},
-- Darker bg in tokyonight
{ "folke/tokyonight.nvim", opts = { style = "night" } },
-- Install gruvbox as option
{ "ellisonleao/gruvbox.nvim" },
-- Flash nvim labels
{
"folke/flash.nvim",
opts = {
labels = "hoeadstnbufgmlzxcv",
},
},
}