doc: fix documentation for filetype map (#122)

This commit is contained in:
Steven Arcangeli 2022-07-06 15:50:29 +00:00
parent bd6de885a0
commit ccab371195

View file

@ -338,9 +338,9 @@ Certain options can be configured per-filetype by passing in a table. "_" will
be used as the default if the filetype is not present.
>
backends = {
'_' = {"lsp", "treesitter"},
'python' = {"treesitter"},
'rust' = {"lsp"},
['_'] = {"lsp", "treesitter"},
python = {"treesitter"},
rust = {"lsp"},
}
<