nvim: remove plugins noice

This commit is contained in:
thek4n 2024-01-18 14:50:08 +03:00
parent 639b835ddd
commit 38cfa308e2
2 changed files with 1 additions and 30 deletions

View File

@ -5,7 +5,7 @@ return {
enabled = true, -- start auto-save when the plugin is loaded (i.e. when your package manager loads it)
execution_message = {
message = function() -- message to print on save
return ("AutoSave: saved at " .. vim.fn.strftime("%H:%M:%S"))
return ""
end,
dim = 0.18, -- dim the color of `message`
cleaning_interval = 1250, -- (milliseconds) automatically clean MsgArea after displaying `message`. See :h MsgArea

View File

@ -1,29 +0,0 @@
return {
"folke/noice.nvim",
dependencies = {
"MunifTanjim/nui.nvim"
},
config = function()
require("noice").setup({
cmdline = {
enabled = true, -- enables the Noice cmdline UI
view = "cmdline_popup",
format = {
cmdline = { pattern = "^:", icon = "", lang = "vim" },
search_down = { kind = "search", pattern = "^/", icon = " ", lang = "regex" },
search_up = { kind = "search", pattern = "^%?", icon = " ", lang = "regex" },
filter = { pattern = "^:%s*!", icon = "$", lang = "bash" },
lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" },
help = { pattern = "^:%s*he?l?p?%s+", icon = "" },
input = {},
},
},
messages = {
enabled = false,
},
notify = {
enabled = false,
}
})
end,
}