diff options
author | Chris <[email protected]> | 2021-07-28 17:13:50 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-28 17:13:50 -0400 |
commit | f220dc48938f8fca8df084e9cc4e746ab40f783c (patch) | |
tree | ec9b91466d375f69f826118edbef375d70f0a1ff /lua/lsp/signs.lua | |
parent | 9611a50acc825e841de5eecd7d5f27ffe847cf7f (diff) |
begin lsp refactor
Diffstat (limited to 'lua/lsp/signs.lua')
-rw-r--r-- | lua/lsp/signs.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/lsp/signs.lua b/lua/lsp/signs.lua new file mode 100644 index 00000000..fab6d302 --- /dev/null +++ b/lua/lsp/signs.lua @@ -0,0 +1,20 @@ +local M = {} +function M.setup() + vim.fn.sign_define( + "LspDiagnosticsSignError", + { texthl = "LspDiagnosticsSignError", text = "ï™™", numhl = "LspDiagnosticsSignError" } + ) + vim.fn.sign_define( + "LspDiagnosticsSignWarning", + { texthl = "LspDiagnosticsSignWarning", text = "", numhl = "LspDiagnosticsSignWarning" } + ) + vim.fn.sign_define( + "LspDiagnosticsSignHint", + { texthl = "LspDiagnosticsSignHint", text = "ï µ", numhl = "LspDiagnosticsSignHint" } + ) + vim.fn.sign_define( + "LspDiagnosticsSignInformation", + { texthl = "LspDiagnosticsSignInformation", text = "", numhl = "LspDiagnosticsSignInformation" } + ) +end +return M |