This commit is contained in:
h
2023-12-20 20:29:27 -05:00
parent b6c09bbed6
commit 13c92edd01
6 changed files with 13 additions and 10 deletions
+4 -4
View File
@@ -71,8 +71,8 @@ local lsp_confs = {
},
},
},
ocamllsp = {},
racket_langserver = {},
ocamllsp = {},
rust_analyzer = {
cmd_env = {
CARGO_TARGET_DIR = "/tmp/rust-analyzer"
@@ -190,9 +190,9 @@ vim.diagnostic.config({
do -- signs
local signs = {
{ 'DiagnosticSignError', text = '×', texthl = 'DiagnosticSignError' },
{ 'DiagnosticSignWarn', text = '>', texthl = 'DiagnosticSignWarn' },
{ 'DiagnosticSignInfo', text = 'I', texthl = 'DiagnosticSignInfo' },
{ 'DiagnosticSignHint', text = 'H', texthl = 'DiagnosticSignHint' },
{ 'DiagnosticSignWarn', text = '>', texthl = 'DiagnosticSignWarn' },
{ 'DiagnosticSignInfo', text = 'I', texthl = 'DiagnosticSignInfo' },
{ 'DiagnosticSignHint', text = 'H', texthl = 'DiagnosticSignHint' },
}
for _, sign in pairs(signs) do
local name = sign[1]