config-nvim/lua/plugins/my_ui_tweaks.lua

18 lines
315 B
Lua
Raw Normal View History

2024-09-05 07:59:53 +00:00
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" },
}