summaryrefslogtreecommitdiff
path: root/lua/lsp/signs.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-07-28 17:13:50 -0400
committerChris <[email protected]>2021-07-28 17:13:50 -0400
commitf220dc48938f8fca8df084e9cc4e746ab40f783c (patch)
treeec9b91466d375f69f826118edbef375d70f0a1ff /lua/lsp/signs.lua
parent9611a50acc825e841de5eecd7d5f27ffe847cf7f (diff)
begin lsp refactor
Diffstat (limited to 'lua/lsp/signs.lua')
-rw-r--r--lua/lsp/signs.lua20
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