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",
padding = { 1, 3 },
}, },
filter_options = {}, routes = {
win_options = { {
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder", filter = {
event = "cmdline",
find = "^%s*[/?]",
}, },
view = "cmdline",
}, },
}, },
}) })