summaryrefslogtreecommitdiff
path: root/lua/lsp/init.lua
diff options
context:
space:
mode:
authorAndrew Fridley <[email protected]>2021-05-03 15:39:03 -0500
committerGitHub <[email protected]>2021-05-03 16:39:03 -0400
commita69bf73fd2fe28760b632a2e7344e4659de54910 (patch)
treef068e1afb4995e593e1d1eb526d0d91c4a82f77e /lua/lsp/init.lua
parent3adcfdc0346546c102c370aa12549fafe2be5cb8 (diff)
Improve LSP Icons (#331)
Diffstat (limited to 'lua/lsp/init.lua')
-rw-r--r--lua/lsp/init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/lsp/init.lua b/lua/lsp/init.lua
index e0c077ee..5b244a5c 100644
--- a/lua/lsp/init.lua
+++ b/lua/lsp/init.lua
@@ -1,19 +1,19 @@
-- TODO figure out why this don't work
vim.fn.sign_define(
"LspDiagnosticsSignError",
- {texthl = "LspDiagnosticsSignError", text = "", numhl = "LspDiagnosticsSignError"}
+ {texthl = "LspDiagnosticsSignError", text = "", numhl = "LspDiagnosticsSignError"}
)
vim.fn.sign_define(
"LspDiagnosticsSignWarning",
- {texthl = "LspDiagnosticsSignWarning", text = "", numhl = "LspDiagnosticsSignWarning"}
+ {texthl = "LspDiagnosticsSignWarning", text = "", numhl = "LspDiagnosticsSignWarning"}
)
vim.fn.sign_define(
"LspDiagnosticsSignHint",
- {texthl = "LspDiagnosticsSignHint", text = "", numhl = "LspDiagnosticsSignHint"}
+ {texthl = "LspDiagnosticsSignHint", text = "", numhl = "LspDiagnosticsSignHint"}
)
vim.fn.sign_define(
"LspDiagnosticsSignInformation",
- {texthl = "LspDiagnosticsSignInformation", text = "", numhl = "LspDiagnosticsSignInformation"}
+ {texthl = "LspDiagnosticsSignInformation", text = "", numhl = "LspDiagnosticsSignInformation"}
)
vim.cmd("nnoremap <silent> gd <cmd>lua vim.lsp.buf.definition()<CR>")