summaryrefslogtreecommitdiff
path: root/neovim/lua/vimrc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'neovim/lua/vimrc.lua')
-rw-r--r--neovim/lua/vimrc.lua11
1 files changed, 10 insertions, 1 deletions
diff --git a/neovim/lua/vimrc.lua b/neovim/lua/vimrc.lua
index 817ec92..3a90ad9 100644
--- a/neovim/lua/vimrc.lua
+++ b/neovim/lua/vimrc.lua
@@ -60,11 +60,20 @@ function M.setup_treesitter()
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
},
+ 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
+ },
+
incremental_selection = {
enable = true,
},
indent = {
- enable = true,
+ enable = false,
disable = { "python", "yaml" },
},
}