Neovim/lua/plugins/noice.lua

37 lines
1.1 KiB
Lua
Raw Normal View History

2023-11-17 11:24:21 +00:00
return {
2024-03-01 17:57:06 +00:00
{
2023-11-17 11:24:21 +00:00
"folke/noice.nvim",
event = "VeryLazy",
2024-02-23 18:23:02 +00:00
dependencies = {
"rcarriga/nvim-notify", -- fancy notifications
"MunifTanjim/nui.nvim", -- gui component library
},
opts = function(_,_)
local options = require("options")
return {
cmdline = {
enabled = true,
format = {
cmdline = {
pattern = "^:",
icon = "",
lang = "vim"
2023-11-17 11:24:21 +00:00
},
},
2024-02-23 18:23:02 +00:00
opts = {
win_options = {
winhighlight = {
FloatBorder = "LspInfoBorder"
}
},
position = {
row = 5,
col = "50%",
},
}
}
}
end
2023-11-17 11:24:21 +00:00
}
}