mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-02-28 14:04:29 +00:00
codewindow: move to setupOpts
readme: edit codewindow: move to setupOpts readme: edit format
This commit is contained in:
commit
24305323f7
4 changed files with 9 additions and 7 deletions
|
|
@ -621,7 +621,3 @@
|
||||||
[JudahZF](https://github.com/JudahZF):
|
[JudahZF](https://github.com/JudahZF):
|
||||||
|
|
||||||
- Added gitFiles mapping option to telescope
|
- Added gitFiles mapping option to telescope
|
||||||
|
|
||||||
[vagahbond](https://github.com/vagahbond):
|
|
||||||
|
|
||||||
- moved [codewindow](https://github.com/gorbit99/codewindow.nvim) to setupOpts
|
|
||||||
|
|
|
||||||
|
|
@ -151,4 +151,10 @@
|
||||||
- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
|
- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
|
||||||
`languages.lua`.
|
`languages.lua`.
|
||||||
|
|
||||||
|
[vagahbond](https://github.com/vagahbond): [codewindow.nvim]:
|
||||||
|
https://github.com/gorbit99/codewindow.nvim
|
||||||
|
|
||||||
|
- Add [codewindow.nvim] plugin in `vim.assistant.codewindow` with `enable` and
|
||||||
|
`setupOpts`
|
||||||
|
|
||||||
<!-- vim: set textwidth=80: -->
|
<!-- vim: set textwidth=80: -->
|
||||||
|
|
|
||||||
|
|
@ -49,4 +49,4 @@ in
|
||||||
"expToLua"
|
"expToLua"
|
||||||
"listToLuaTable"
|
"listToLuaTable"
|
||||||
"attrsetToLuaTable"
|
"attrsetToLuaTable"
|
||||||
] (name: lib.warn "${name} is deprecated use toLuaObject instead" toLuaObject)
|
] (name: builtins.throw "${name} is deprecated use toLuaObject instead")
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.lists) isList;
|
||||||
inherit (lib.attrsets) attrNames;
|
inherit (lib.attrsets) attrNames;
|
||||||
inherit (lib.types) bool package str listOf either enum int;
|
inherit (lib.types) bool package str listOf either enum int;
|
||||||
inherit (lib.nvim.lua) expToLua toLuaObject;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.attrsets) mapListToAttrs;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
||||||
|
|
@ -169,7 +169,7 @@ in {
|
||||||
server = {
|
server = {
|
||||||
cmd = ${
|
cmd = ${
|
||||||
if isList cfg.lsp.package
|
if isList cfg.lsp.package
|
||||||
then expToLua cfg.lsp.package
|
then toLuaObject cfg.lsp.package
|
||||||
else ''{"${cfg.lsp.package}/bin/rust-analyzer"}''
|
else ''{"${cfg.lsp.package}/bin/rust-analyzer"}''
|
||||||
},
|
},
|
||||||
default_settings = {
|
default_settings = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue