add nvim-dap
This commit is contained in:
parent
8a36baf087
commit
850f3e7fc0
10 changed files with 201 additions and 5 deletions
14
nvim/lua/settings/rainbow.lua
Normal file
14
nvim/lua/settings/rainbow.lua
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue