Neovim/lua/plugins/noice.lua

35 lines
984 B
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 = {
"MunifTanjim/nui.nvim", -- gui component library
},
opts = function(_, _)
2024-02-23 18:23:02 +00:00
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",
},
2024-02-23 18:23:02 +00:00
},
position = {
row = 5,
col = "50%",
},
},
},
2024-02-23 18:23:02 +00:00
}
end,
},
2023-11-17 11:24:21 +00:00
}