added rainbow

This commit is contained in:
2022-07-10 18:54:55 -05:00
parent 7c6d6244ba
commit 9f7730c757
2 changed files with 101 additions and 92 deletions
+9 -1
View File
@@ -74,7 +74,7 @@ augroup END
---------------
local pyenv_root = vim.env.PYENV_ROOT
if pyenv_root ~= nil then
g.python3_host_prog = pyenv_root .. '/shims/python3'
g.python3_host_prog = pyenv_root .. "/shims/python3"
else
g.python3_host_prog = "/usr/bin/python3"
end
@@ -114,6 +114,14 @@ require("nvim-treesitter.configs").setup({
enable = true,
disable = { "typescript", "tsx", "html", "javascript" },
},
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
},
})
-----------------------
+1
View File
@@ -62,6 +62,7 @@ require("packer").startup(function()
-- LSP
use("hrsh7th/nvim-cmp") -- Autocompletion plugin
--use "saadparwaiz1/cmp_luasnip" -- Snippets source for nvim-cmp
use("p00f/nvim-ts-rainbow")
use({ "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" })
use("neovim/nvim-lspconfig") -- Collection of configurations for built-in LSP client
use("williamboman/nvim-lsp-installer")