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",
config = function()
require("noice").setup({
views = {
cmdline_popup = {
border = {
style = "none",
padding = { 1, 3 },
},
filter_options = {},
win_options = {
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder",
cmdline = {
view = "cmdline",
},
routes = {
{
filter = {
event = "cmdline",
find = "^%s*[/?]",
},
view = "cmdline",
},
},
})