Compare commits

..

No commits in common. "5f3908149bab5f5f4037cb85f4c6f45982e65c98" and "6481950e18de10790226f75bc4ca056eaba5da75" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ return {
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("ibl").setup()
require("ibl").setup({
exclude = {
buftypes = {

View File

@ -83,9 +83,9 @@ return {
vim.g.rainbow_delimiters = {
strategy = {
on_attach = function()
if vim.fn.line("$") > 100000 then
if vim.fn.line("$") > 10000 then
return nil
elseif vim.fn.line("$") > 10000 then
elseif vim.fn.line("$") > 1000 then
return rainbow_delimiters.strategy["global"]
end
return rainbow_delimiters.strategy["local"]