neovim: Disable tree-sitter indentation for rust

This commit is contained in:
Simon Bruder 2024-07-14 19:02:21 +02:00
parent 1d889fddbe
commit 54540aae6e
Signed by: simon
GPG key ID: 347FF8699CDA0776

View file

@ -437,6 +437,9 @@ require('nvim-treesitter.configs').setup {
},
indent = {
enable = true,
disable = {
'rust', -- broken in macros, annoying with maud
},
},
}