1
0

Move noice config into submodule

This commit is contained in:
Patrick Auernig 2024-02-12 03:40:22 +01:00
parent 73b53d408a
commit f0bdbb11a3
3 changed files with 20 additions and 27 deletions

View File

@ -20,7 +20,7 @@
"neoconf.nvim": { "branch": "main", "commit": "f8947e998dac4213f6c7bb1c7b843cba64db22dd" },
"neodev.nvim": { "branch": "main", "commit": "a09881379ac7abddb8091c5edd292805a53ccf18" },
"neogit": { "branch": "master", "commit": "536b4cfc009fc6d8bd771f010f04d48204533fae" },
"noice.nvim": { "branch": "main", "commit": "bf67d70bd7265d075191e7812d8eb42b9791f737" },
"noice.nvim": { "branch": "main", "commit": "92433164e2f7118d4122c7674c3834d9511722ba" },
"nui.nvim": { "branch": "main", "commit": "35da9ca1de0fc4dda96c2e214d93d363c145f418" },
"nvim-autopairs": { "branch": "master", "commit": "096d0baecc34f6c5d8a6dd25851e9d5ad338209b" },
"nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" },

View File

@ -47,30 +47,4 @@ return {
"nvim-treesitter/nvim-treesitter",
}
},
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {},
keys = {
{ "<leader>nd", "<cmd>NoiceDismiss<CR>" },
},
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
}
},
{
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
notify.setup({
top_down = false,
})
vim.notify = notify
end
},
}

View File

@ -0,0 +1,19 @@
local spec = {
"folke/noice.nvim",
tag = "v2.0.0",
}
spec.event = "VeryLazy"
spec.opts = {}
spec.keys = {
{ "<leader>nd", "<cmd>NoiceDismiss<CR>" },
}
spec.dependencies = {
"MunifTanjim/nui.nvim",
{ "rcarriga/nvim-notify", opts = { top_down = false } },
}
return spec