From f9677d355d706806905e0cfadf47ed013d9cf127 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Sat, 30 Nov 2024 14:40:00 -0500 Subject: [PATCH] refactor: remove unneeded dependency --- .config/nvim/lua/plugins/noice.lua | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.config/nvim/lua/plugins/noice.lua b/.config/nvim/lua/plugins/noice.lua index c0e3b15..fe34719 100644 --- a/.config/nvim/lua/plugins/noice.lua +++ b/.config/nvim/lua/plugins/noice.lua @@ -1,17 +1,16 @@ return { - "folke/noice.nvim", + 'folke/noice.nvim', dependencies = { - "MunifTanjim/nui.nvim", - "rcarriga/nvim-notify", - "hrsh7th/nvim-cmp", + 'MunifTanjim/nui.nvim', + 'rcarriga/nvim-notify', }, - event = "VeryLazy", + event = 'VeryLazy', opts = { lsp = { override = { - ["vim.lsp.util.convert_input_to_markdown_lines"] = true, - ["vim.lsp.util.stylize_markdown"] = true, - ["cmp.entry.get_documentation"] = true, + ['vim.lsp.util.convert_input_to_markdown_lines'] = true, + ['vim.lsp.util.stylize_markdown'] = true, + ['cmp.entry.get_documentation'] = true, }, }, presets = { @@ -22,4 +21,4 @@ return { lsp_doc_border = true, }, }, -} +} \ No newline at end of file