fix(nvim): use traditional cmdline w/ noice

This fixes an issue with opening the command line while having telescope
open.
This commit is contained in:
Price Hiller 2022-10-04 00:17:02 -05:00
parent 59544079e7
commit 12a0f95bd2

View File

@ -43,16 +43,16 @@ return packer.startup({
event = "VimEnter", event = "VimEnter",
config = function() config = function()
require("noice").setup({ require("noice").setup({
views = { cmdline = {
cmdline_popup = { view = "cmdline",
border = { },
style = "none", routes = {
padding = { 1, 3 }, {
}, filter = {
filter_options = {}, event = "cmdline",
win_options = { find = "^%s*[/?]",
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder",
}, },
view = "cmdline",
}, },
}, },
}) })