dotfiles/.config/nvim/lua/plugins/extras/ui/ui-extended.lua
Sergio Laín e457722492
📁 files(nvim): changes to the directories and extras
another bug change to the structure of the nvim config. probably, tomorrow will be finished
2023-10-25 12:38:42 +02:00

54 lines
1.1 KiB
Lua

return {
{
"HampusHauffman/block.nvim",
keys = { { "<leader>uB", "<cmd>Block<CR>", desc = "Toggle Block" } },
opts = {
percent = 0.9,
depth = 4,
colors = nil,
automatic = false,
},
},
{
"tzachar/highlight-undo.nvim",
event = "BufReadPost",
opts = {
duration = 700,
},
},
{
"mvllow/modes.nvim",
event = "BufReadPost",
opts = {
colors = {
copy = "#f5a97f",
delete = "#ee99a0",
insert = "#8bd5ca",
visual = "#8aadf4",
},
},
},
{
"nacro90/numb.nvim",
event = "CmdlineEnter",
opts = {},
},
{
"sitiom/nvim-numbertoggle",
event = "BufReadPost",
},
{
"anuvyklack/windows.nvim",
event = "WinNew",
dependencies = {
{ "anuvyklack/middleclass" },
{ "anuvyklack/animation.nvim" },
},
keys = {
{ "<leader>wv", "<cmd>WindowsMaximizeVertically<cr>", desc = "Vertical Zoom" },
{ "<leader>wh", "<cmd>WindowsMaximizeHorizontally<cr>", desc = "Horizontal Zoom" },
{ "<leader>we", "<cmd>WindowsEqualize<cr>", desc = "Equalize Zoom" },
},
opts = {},
},
}