mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 10:21:31 +00:00
Merge pull request #870 from imnotpoz/main
plugins/gitsigns: fix null-ls issue
This commit is contained in:
commit
c45f28aefd
2 changed files with 9 additions and 3 deletions
|
@ -352,3 +352,7 @@
|
||||||
[aionoid](https://github.com/aionoid):
|
[aionoid](https://github.com/aionoid):
|
||||||
|
|
||||||
- Fix [render-markdown.nvim] file_types option type to list, to accept merging.
|
- Fix [render-markdown.nvim] file_types option type to list, to accept merging.
|
||||||
|
|
||||||
|
[poz](https://poz.pet):
|
||||||
|
|
||||||
|
- Fix gitsigns null-ls issue.
|
||||||
|
|
|
@ -81,9 +81,11 @@ in {
|
||||||
(mkIf cfg.codeActions.enable {
|
(mkIf cfg.codeActions.enable {
|
||||||
vim.lsp.null-ls = {
|
vim.lsp.null-ls = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.sources.gitsigns-ca = mkLuaInline ''
|
setupOpts.sources = [
|
||||||
|
(mkLuaInline ''
|
||||||
require("null-ls").builtins.code_actions.gitsigns
|
require("null-ls").builtins.code_actions.gitsigns
|
||||||
'';
|
'')
|
||||||
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue