plugins: improve slightly the treesitter config
- Adds an empty module options to avoid warning. - Indents the disabled language list, in order to add some easily. Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
3e3d308717
commit
cf209d6e52
|
@ -45,7 +45,9 @@ return {
|
||||||
-- Enable color syntax
|
-- Enable color syntax
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
disable = { "markdown" },
|
disable = {
|
||||||
|
"markdown"
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- Enable better indentation management
|
-- Enable better indentation management
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
@ -64,6 +66,9 @@ return {
|
||||||
"yaml",
|
"yaml",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- Empty option, to avoid warning
|
||||||
|
modules = {},
|
||||||
|
|
||||||
-- List of parsers to ignore installing
|
-- List of parsers to ignore installing
|
||||||
ignore_install = {
|
ignore_install = {
|
||||||
"markdown",
|
"markdown",
|
||||||
|
@ -133,5 +138,3 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue