LSP configuration for LaTeX
Some checks failed
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 41s
Some checks failed
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 41s
This commit is contained in:
@@ -19,6 +19,7 @@ require("mason-lspconfig").setup({
|
|||||||
"vhdl_ls",
|
"vhdl_ls",
|
||||||
"verible",
|
"verible",
|
||||||
"vimls",
|
"vimls",
|
||||||
|
"texlab",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -47,6 +48,9 @@ require("mason-lspconfig").setup_handlers({
|
|||||||
function(vimls)
|
function(vimls)
|
||||||
require("lspconfig")[vimls].setup({})
|
require("lspconfig")[vimls].setup({})
|
||||||
end,
|
end,
|
||||||
|
function(texlab)
|
||||||
|
require("lspconfig")[texlab].setup({})
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
require("lspconfig").verible.setup({
|
require("lspconfig").verible.setup({
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ return {
|
|||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
||||||
"mhinz/vim-startify",
|
"mhinz/vim-startify",
|
||||||
|
"p00f/nvim-ts-rainbow",
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
@@ -45,10 +46,14 @@ return {
|
|||||||
sync_install = false,
|
sync_install = false,
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
rainbow = {
|
||||||
|
enable = true,
|
||||||
|
extended_mode = true,
|
||||||
|
max_file_lines = 3000,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
"p00f/nvim-ts-rainbow",
|
|
||||||
"dense-analysis/ale",
|
"dense-analysis/ale",
|
||||||
"f-person/git-blame.nvim",
|
"f-person/git-blame.nvim",
|
||||||
"dstein64/vim-startuptime",
|
"dstein64/vim-startuptime",
|
||||||
|
|||||||
Reference in New Issue
Block a user