Compare commits

..

3 Commits

Author SHA1 Message Date
ea9f8e3227
refactor(nvim): remove dressing.nvim
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m6s
2024-06-13 10:56:50 -05:00
31a38ff594
fix(nvim): set border style for cmdline_input in noice.nvim 2024-06-13 10:52:51 -05:00
eadaebb902
refactor(nvim): removing handing notify statements 2024-06-13 10:52:36 -05:00
3 changed files with 5 additions and 6 deletions

View File

@ -20,14 +20,12 @@ return {
{ {
"q/", "q/",
function() function()
vim.notify("YUP!")
require("cmdbuf").split_open(vim.o.cmdwinheight, { type = "vim/search/forward" }) require("cmdbuf").split_open(vim.o.cmdwinheight, { type = "vim/search/forward" })
end, end,
}, },
{ {
"q?", "q?",
function() function()
vim.notify("YUP!")
require("cmdbuf").split_open(vim.o.cmdwinheight, { type = "vim/search/backward" }) require("cmdbuf").split_open(vim.o.cmdwinheight, { type = "vim/search/backward" })
end, end,
}, },

View File

@ -7,10 +7,6 @@ return {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
lazy = true, lazy = true,
}, },
{
"stevearc/dressing.nvim",
lazy = true,
},
{ {
"folke/which-key.nvim", "folke/which-key.nvim",
lazy = true, lazy = true,

View File

@ -25,6 +25,11 @@ return {
col = "0%", col = "0%",
}, },
}, },
cmdline_input = {
border = {
style = "rounded",
},
},
}, },
popupmenu = { popupmenu = {
backend = "cmp", backend = "cmp",