mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 00:05:57 +01:00
Fix typo in otter setupOpts (#424)
* Revert "leap: changed default binds"
This reverts commit 92a7bfc4b8
.
* Reapply "leap: changed default binds"
This reverts commit ede1d4437e2d8d1a6ff31b4dc855676c6e16df36.
* otter: fixed stupid typo
* otter: added changelog entry
This commit is contained in:
parent
71e2ae1db4
commit
da86e554a6
2 changed files with 2 additions and 1 deletions
|
@ -279,6 +279,7 @@ To migrate to `nixfmt`, simply change `vim.languages.nix.format.type` to
|
||||||
- Add LSP and Treesitter support for R under `vim.languages.R`.
|
- Add LSP and Treesitter support for R under `vim.languages.R`.
|
||||||
- Add Otter support under `vim.lsp.otter` and an assert to prevent conflict with
|
- Add Otter support under `vim.lsp.otter` and an assert to prevent conflict with
|
||||||
ccc
|
ccc
|
||||||
|
- Fixed typo in Otter's setupOpts
|
||||||
- Add Neorg support under `vim.notes.neorg`
|
- Add Neorg support under `vim.notes.neorg`
|
||||||
- Add LSP, diagnostics, formatter and Treesitter support for Kotlin under
|
- Add LSP, diagnostics, formatter and Treesitter support for Kotlin under
|
||||||
`vim.languages.kotlin`
|
`vim.languages.kotlin`
|
||||||
|
|
|
@ -32,7 +32,7 @@ in {
|
||||||
|
|
||||||
pluginRC.otter-nvim = entryAnywhere ''
|
pluginRC.otter-nvim = entryAnywhere ''
|
||||||
-- Enable otter diagnostics viewer
|
-- Enable otter diagnostics viewer
|
||||||
require("otter").setup({${toLuaObject cfg.otter-nvim.setupOpts}})
|
require("otter").setup(${toLuaObject cfg.otter-nvim.setupOpts})
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue