We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79993c7 commit 5537287Copy full SHA for 5537287
docs/release-notes/rl-0.8.md
@@ -346,6 +346,7 @@
346
- Fix default telescope ignore list entry for '.git/' to properly match
347
- Add [gitlinker.nvim] plugin to `vim.git.gitlinker-nvim`
348
- Add [nvim-treesitter-textobjects] plugin to `vim.treesitter.textobjects`
349
+- Fix rustfmt not respecting rustfmt.toml config
350
351
[rrvsh](https://github.com/rrvsh):
352
modules/plugins/languages/rust.nix
@@ -120,7 +120,7 @@ in {
120
vim.treesitter.grammars = [cfg.treesitter.package];
121
})
122
123
- (mkIf cfg.format.enable {
+ (mkIf (!cfg.lsp.enable && cfg.format.enable) {
124
vim.formatter.conform-nvim = {
125
enable = true;
126
setupOpts.formatters_by_ft.rust = [cfg.format.type];
0 commit comments