Compare commits

..

No commits in common. "39345e58341597b654c3331749b45e29686ca254" and "cc76be2ab6ffb8395869918ff3528f0c57960a8a" have entirely different histories.

3 changed files with 2 additions and 9 deletions

View file

@ -196,10 +196,6 @@
- Added Debugging support to `languages.odin` with - Added Debugging support to `languages.odin` with
[nvim-dap-odin](https://github.com/NANDquark/nvim-dap-odin). [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. - Added [`golangci-lint`](https://golangci-lint.run/) for more diagnostics.
- updated default filetypes for - updated default filetypes for
@ -242,7 +238,6 @@ https://github.com/gorbit99/codewindow.nvim
[Ladas552](https://github.com/Ladas552) [Ladas552](https://github.com/Ladas552)
- Changed `withRuby` to not be enabled by default - Changed `withRuby` to not be enabled by default
- Fix virtualtext mode in colorizer
[horriblename](https://github.com/horriblename): [horriblename](https://github.com/horriblename):

View file

@ -104,9 +104,7 @@ in {
startPlugins = ["nvim-dap-odin"]; startPlugins = ["nvim-dap-odin"];
debugger.nvim-dap.sources.odin-debugger = debuggers.${cfg.dap.debugger}.dapConfig; debugger.nvim-dap.sources.odin-debugger = debuggers.${cfg.dap.debugger}.dapConfig;
pluginRC.nvim-dap-odin = entryAfter ["nvim-dap"] '' pluginRC.nvim-dap-odin = entryAfter ["nvim-dap"] ''
require('nvim-dap-odin').setup({ require('nvim-dap-odin').setup()
notifications = false -- contains no useful information
})
''; '';
debugger.nvim-dap.enable = true; debugger.nvim-dap.enable = true;
}; };

View file

@ -80,7 +80,7 @@
mode = mkOption { mode = mkOption {
description = "Set the display mode"; description = "Set the display mode";
type = nullOr (enum ["foreground" "background" "virtualtext"]); type = nullOr (enum ["foreground" "background"]);
default = null; default = null;
}; };