New LSP for LaTeX
This commit is contained in:
parent
f61bb02897
commit
a32b412a85
|
@ -10,6 +10,7 @@ lsp.ensure_installed({
|
|||
'bashls',
|
||||
'julials',
|
||||
'lua_ls',
|
||||
'ltex',
|
||||
'pylsp',
|
||||
'texlab',
|
||||
'zls'
|
||||
|
|
|
@ -61,4 +61,15 @@ return require('packer').startup(function(use)
|
|||
-- :FixWhitespace
|
||||
use "bronson/vim-trailing-whitespace"
|
||||
|
||||
-- Parenthesis complete
|
||||
use({
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
config = function()
|
||||
require("nvim-surround").setup({
|
||||
-- Configuration here, or leave empty to use defaults
|
||||
})
|
||||
end
|
||||
})
|
||||
|
||||
end)
|
||||
|
|
Loading…
Reference in New Issue