Refactored lsp and null ls configs

This commit is contained in:
2023-06-20 11:32:21 +02:00
parent 9c8e4e9948
commit 69b5f1e42b
7 changed files with 187 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
local autopairs_setup, autopairs = pcall(require, "nvim-autopairs")
if not autopairs_setup then
return
end
autopairs.setup {
check_ts = true,
ts_config = {
lua = { "string" },
javascript = { "template_string" },
java = false,
},
}