Skip to content

Commit f8451e2

Browse files
committed
Update noice to handle search
1 parent 9a11153 commit f8451e2

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

config/nvim/lua/plugins/noice.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
return {
2+
{
3+
"folke/noice.nvim",
4+
event = "VeryLazy",
5+
opts = function(_, opts)
6+
opts.presets.bottom_search = false
7+
8+
return opts
9+
end,
10+
},
11+
}

config/nvim/lua/plugins/plugins.lua

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ return {
3333
{ "MunifTanjim/nui.nvim" },
3434
},
3535
},
36+
3637
-- git
3738
{
3839
"kdheepak/lazygit.nvim",
@@ -71,15 +72,7 @@ return {
7172

7273
-- interface
7374
{ "stevearc/dressing.nvim" },
74-
{
75-
"folke/noice.nvim",
76-
event = "VeryLazy",
77-
opts = {},
78-
dependencies = {
79-
"MunifTanjim/nui.nvim",
80-
"rcarriga/nvim-notify",
81-
},
82-
},
75+
8376
{
8477
"nvim-neo-tree/neo-tree.nvim",
8578
opts = {

0 commit comments

Comments
 (0)