Added lsp-rooter and ts-rainbow
This commit is contained in:
parent
9074078a98
commit
f464972ef0
12
init.lua
12
init.lua
@ -122,3 +122,15 @@ require('neoclip').setup()
|
|||||||
require('telescope').load_extension('neoclip')
|
require('telescope').load_extension('neoclip')
|
||||||
-------------------- LUALINE -------------------------------
|
-------------------- LUALINE -------------------------------
|
||||||
require('lualine').setup()
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -36,4 +36,6 @@ return require('packer').startup(function()
|
|||||||
'hoob3rt/lualine.nvim',
|
'hoob3rt/lualine.nvim',
|
||||||
requires = {'kyazdani42/nvim-web-devicons', opt = true}
|
requires = {'kyazdani42/nvim-web-devicons', opt = true}
|
||||||
}
|
}
|
||||||
|
use {'ahmedkhalf/lsp-rooter.nvim'}
|
||||||
|
use {'p00f/nvim-ts-rainbow'}
|
||||||
end)
|
end)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user