Re-enable noice and refactor and change some color options. I previously

disabled it because it wasn't playing nicely with Zellij, this is no
longer an issue when using Tmux.
This commit is contained in:
Martin Larsson 2024-07-12 18:59:02 +02:00
parent 0a53678bb9
commit f0502dc916
2 changed files with 35 additions and 33 deletions

View file

@ -39,6 +39,7 @@ return {
cmp = true, cmp = true,
dap_ui = true, dap_ui = true,
dap = true, dap = true,
notify = true,
}, },
dim_inactive = { dim_inactive = {
enabled = false, enabled = false,
@ -84,6 +85,8 @@ return {
-- Lazy -- Lazy
LazyNormal = { link = "EdgeTool" }, LazyNormal = { link = "EdgeTool" },
NotifyBackground = { link = "EdgeTool" }
} }
end end
}) })

View file

@ -1,35 +1,34 @@
return { return {
-- "folke/noice.nvim", "folke/noice.nvim",
-- event = "VeryLazy", event = "VeryLazy",
-- dependencies = { dependencies = {
-- "MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
-- "rcarriga/nvim-notify", {
-- }, "rcarriga/nvim-notify",
-- config = function() opts = {
-- require("notify").setup({ background_colour = "#24273a",
-- background_colour = "#24273a", fps = 60,
-- fps = 60, }
-- }) }
-- },
-- require("noice").setup({ opts = {
-- lsp = { lsp = {
-- -- override markdown rendering so that **cmp** and other plugins use **Treesitter** -- override markdown rendering so that **cmp** and other plugins use **Treesitter**
-- override = { override = {
-- ["vim.lsp.util.convert_input_to_markdown_lines"] = true, ["vim.lsp.util.convert_input_to_markdown_lines"] = true,
-- ["vim.lsp.util.stylize_markdown"] = true, ["vim.lsp.util.stylize_markdown"] = true,
-- ["cmp.entry.get_documentation"] = true, -- requires hrsh7th/nvim-cmp ["cmp.entry.get_documentation"] = true, -- requires hrsh7th/nvim-cmp
-- }, },
-- }, },
-- presets = { presets = {
-- bottom_search = true, -- use a classic bottom cmdline for search bottom_search = true, -- use a classic bottom cmdline for search
-- command_palette = false, -- position the cmdline and popupmenu together command_palette = false, -- position the cmdline and popupmenu together
-- long_message_to_split = true, -- long messages will be sent to a split long_message_to_split = true, -- long messages will be sent to a split
-- inc_rename = false, -- enables an input dialog for inc-rename.nvim inc_rename = false, -- enables an input dialog for inc-rename.nvim
-- lsp_doc_border = false, -- add a border to hover docs and signature help lsp_doc_border = false, -- add a border to hover docs and signature help
-- }, },
-- notify = { notify = {
-- level = "warn" level = "warn"
-- } }
-- }) }
-- end
} }