Added lsp-rooter and ts-rainbow
This commit is contained in:
12
init.lua
12
init.lua
@ -122,3 +122,15 @@ require('neoclip').setup()
|
||||
require('telescope').load_extension('neoclip')
|
||||
-------------------- LUALINE -------------------------------
|
||||
require('lualine').setup()
|
||||
-------------------- LSP-ROOTER ----------------------------
|
||||
require("lsp-rooter").setup { }
|
||||
-------------------- TS-RAINBOW ----------------------------
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
rainbow = {
|
||||
enable = true,
|
||||
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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user