diff options
author | kylo252 <[email protected]> | 2022-02-12 09:17:34 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-02-12 09:17:34 +0100 |
commit | ff9d883f64b75cb36f3164aae9d36a372f8b46d7 (patch) | |
tree | 27f496c5d814fde1bb5950f5580ed476f7fa02d1 /lua/lvim/lsp/config.lua | |
parent | 2fa176f23fb8dffbafbac6a1f5e34c1f9c79c3f7 (diff) | |
parent | 564798b83e40e622fb5c1b6f3803b80f42d092ec (diff) |
Merge branch 'rolling'
Diffstat (limited to 'lua/lvim/lsp/config.lua')
-rw-r--r-- | lua/lvim/lsp/config.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lua/lvim/lsp/config.lua b/lua/lvim/lsp/config.lua index fb59ca51..26b1b489 100644 --- a/lua/lvim/lsp/config.lua +++ b/lua/lvim/lsp/config.lua @@ -23,7 +23,7 @@ return { prefix = "", format = function(d) local t = vim.deepcopy(d) - local code = d.code or d.user_data.lsp.code + local code = d.code or (d.user_data and d.user_data.lsp.code) if code then t.message = string.format("%s [%s]", t.message, code):gsub("1. ", "") end @@ -84,6 +84,7 @@ return { "quick_lint_js", "remark_ls", "rome", + "scry", "solang", "solidity_ls", "sorbet", @@ -94,7 +95,9 @@ return { "stylelint_lsp", "tailwindcss", "tflint", - "volar", + "verible", + "vuels", + "zeta_note", "zk", }, } |