mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-03-06 16:56:00 +00:00
Compare commits
3 commits
cc76be2ab6
...
39345e5834
| Author | SHA1 | Date | |
|---|---|---|---|
|
39345e5834 |
|||
|
|
a70f7ff8ca |
||
|
|
2174c17a46 |
3 changed files with 9 additions and 2 deletions
|
|
@ -196,6 +196,10 @@
|
|||
- 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
|
||||
|
|
@ -238,6 +242,7 @@ 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):
|
||||
|
||||
|
|
|
|||
|
|
@ -104,7 +104,9 @@ 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()
|
||||
require('nvim-dap-odin').setup({
|
||||
notifications = false -- contains no useful information
|
||||
})
|
||||
'';
|
||||
debugger.nvim-dap.enable = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
mode = mkOption {
|
||||
description = "Set the display mode";
|
||||
type = nullOr (enum ["foreground" "background"]);
|
||||
type = nullOr (enum ["foreground" "background" "virtualtext"]);
|
||||
default = null;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue