diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 4a028a1b..cf36de93 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -196,10 +196,6 @@ - Added Debugging support to `languages.odin` with [nvim-dap-odin](https://github.com/NANDquark/nvim-dap-odin). -- Disabled notifications for - [nvim-dap-odin](https://github.com/NANDquark/nvim-dap-odin), because it - contain no use full information, only spam, and it can't be made lazy. - - Added [`golangci-lint`](https://golangci-lint.run/) for more diagnostics. - updated default filetypes for @@ -242,7 +238,6 @@ https://github.com/gorbit99/codewindow.nvim [Ladas552](https://github.com/Ladas552) - Changed `withRuby` to not be enabled by default -- Fix virtualtext mode in colorizer [horriblename](https://github.com/horriblename): diff --git a/modules/plugins/languages/odin.nix b/modules/plugins/languages/odin.nix index cee9b330..6c2f7b8e 100644 --- a/modules/plugins/languages/odin.nix +++ b/modules/plugins/languages/odin.nix @@ -104,9 +104,7 @@ in { startPlugins = ["nvim-dap-odin"]; debugger.nvim-dap.sources.odin-debugger = debuggers.${cfg.dap.debugger}.dapConfig; pluginRC.nvim-dap-odin = entryAfter ["nvim-dap"] '' - require('nvim-dap-odin').setup({ - notifications = false -- contains no useful information - }) + require('nvim-dap-odin').setup() ''; debugger.nvim-dap.enable = true; }; diff --git a/modules/plugins/ui/colorizer/colorizer.nix b/modules/plugins/ui/colorizer/colorizer.nix index ef0b1787..1cee089f 100644 --- a/modules/plugins/ui/colorizer/colorizer.nix +++ b/modules/plugins/ui/colorizer/colorizer.nix @@ -80,7 +80,7 @@ mode = mkOption { description = "Set the display mode"; - type = nullOr (enum ["foreground" "background" "virtualtext"]); + type = nullOr (enum ["foreground" "background"]); default = null; };