add nvim-dap

This commit is contained in:
Fabio Lenherr 2022-10-07 20:58:37 +02:00
parent 8a36baf087
commit 850f3e7fc0
10 changed files with 201 additions and 5 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
}
}