Merge branch 'main' into hardtime

This commit is contained in:
Jhuan Nycolas 2025-04-30 21:16:53 -03:00 committed by GitHub
commit 997d685c00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 7 deletions

View file

@ -39,7 +39,7 @@ An example flake that exposes your custom Neovim configuration might look like
theme.enable = true; theme.enable = true;
# Enable Treesitter # Enable Treesitter
tree-sitter.enable = true; treesitter.enable = true;
# Other options will go here. Refer to the config # Other options will go here. Refer to the config
# reference in Appendix B of the nvf manual. # reference in Appendix B of the nvf manual.

View file

@ -91,7 +91,7 @@ Release notes for release 0.5
- Updated indent-blankine.nvim to v3 - this comes with a few option changes, - Updated indent-blankine.nvim to v3 - this comes with a few option changes,
which will be migrated with `renamedOptionModule` which will be migrated with `renamedOptionModule`
[jacekpoz](https://jacekpoz.pl): [poz](https://poz.pet):
- Fixed scrollOffset not being used - Fixed scrollOffset not being used

View file

@ -69,7 +69,7 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap =
- Added rose-pine theme. - Added rose-pine theme.
[jacekpoz](https://jacekpoz.pl): [poz](https://poz.pet):
- Added `vim.autocomplete.alwaysComplete`. Allows users to have the autocomplete - Added `vim.autocomplete.alwaysComplete`. Allows users to have the autocomplete
window popup only when manually activated. window popup only when manually activated.

View file

@ -162,7 +162,7 @@ The changes are, in no particular order:
- Add [lz.n] support and lazy-load some builtin plugins. - Add [lz.n] support and lazy-load some builtin plugins.
- Add simpler helper functions for making keymaps - Add simpler helper functions for making keymaps
[jacekpoz](https://jacekpoz.pl): [poz](https://poz.pet):
[ocaml-lsp]: https://github.com/ocaml/ocaml-lsp [ocaml-lsp]: https://github.com/ocaml/ocaml-lsp
[new-file-template.nvim]: https://github.com/otavioschwanck/new-file-template.nvim [new-file-template.nvim]: https://github.com/otavioschwanck/new-file-template.nvim

View file

@ -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.

View file

@ -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
''; '')
];
}; };
}) })
]); ]);