nvim: remove plugins noice
This commit is contained in:
parent
639b835ddd
commit
38cfa308e2
@ -5,7 +5,7 @@ return {
|
|||||||
enabled = true, -- start auto-save when the plugin is loaded (i.e. when your package manager loads it)
|
enabled = true, -- start auto-save when the plugin is loaded (i.e. when your package manager loads it)
|
||||||
execution_message = {
|
execution_message = {
|
||||||
message = function() -- message to print on save
|
message = function() -- message to print on save
|
||||||
return ("AutoSave: saved at " .. vim.fn.strftime("%H:%M:%S"))
|
return ""
|
||||||
end,
|
end,
|
||||||
dim = 0.18, -- dim the color of `message`
|
dim = 0.18, -- dim the color of `message`
|
||||||
cleaning_interval = 1250, -- (milliseconds) automatically clean MsgArea after displaying `message`. See :h MsgArea
|
cleaning_interval = 1250, -- (milliseconds) automatically clean MsgArea after displaying `message`. See :h MsgArea
|
||||||
|
|||||||
@ -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,
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user