refactor: lint and dap

This commit is contained in:
Fabio Lenherr 2022-10-12 22:05:51 +02:00
parent 7785311043
commit 2bed6f50c0
46 changed files with 2453 additions and 0 deletions

View file

@ -0,0 +1,14 @@
require("nvim-treesitter.configs").setup {
highlight = {
-- ...
},
-- ...
rainbow = {
enable = true,
-- disable = { "jsx", "cpp" }, list of languages you want to disable the plugin for
extended_mode = true, -- Also highlight non-bracket delimiters like html tags, boolean or table: lang -> boolean
max_file_lines = nil, -- Do not enable for files with more than n lines, int
-- colors = {}, -- table of hex strings
-- termcolors = {} -- table of colour name strings
}
}