diff options
author | Andrew Fridley <[email protected]> | 2021-05-03 15:39:03 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-03 16:39:03 -0400 |
commit | a69bf73fd2fe28760b632a2e7344e4659de54910 (patch) | |
tree | f068e1afb4995e593e1d1eb526d0d91c4a82f77e /lua/lsp/init.lua | |
parent | 3adcfdc0346546c102c370aa12549fafe2be5cb8 (diff) |
Improve LSP Icons (#331)
Diffstat (limited to 'lua/lsp/init.lua')
-rw-r--r-- | lua/lsp/init.lua | 8 |
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>") |