.nvim/lua/config/plugins/ui.lua
Erica Marigold ebcb199805
Initial config divergence from luka
Minor customizations for keybinds and adds luau-lsp support.
2025-02-05 00:39:41 +05:30

62 lines
1.6 KiB
Lua

return {
{
"echasnovski/mini.statusline",
opts = {},
},
{
"echasnovski/mini.icons",
opts = {
default = {
directory = {
hl = "MiniIconsBlue",
},
},
},
},
{
"folke/noice.nvim",
event = "VeryLazy",
dependencies = {
"MunifTanjim/nui.nvim",
{
"rcarriga/nvim-notify",
opts = {
on_open = function(win)
vim.api.nvim_set_option_value("winblend", 0, { win = win })
end,
},
}
},
opts = {
views = {
mini = {
win_options = {
winblend = 0,
},
},
cmdline_popup = {
win_options = {
winblend = 0,
},
},
notify = {
win_options = {
winblend = 0,
},
},
},
lsp = {
signature = {
enabled = false,
},
},
format = {
lsp_progress_done = {
{ "󰄬 ", hl_group = "NoiceLspProgressSpinner" },
{ "{data.progress.title} ", hl_group = "NoiceLspProgressTitle" },
{ "{data.progress.client} ", hl_group = "NoiceLspProgressClient" },
},
}
},
}
}