summaryrefslogtreecommitdiff
path: root/lua/lsp/signs.lua
diff options
context:
space:
mode:
authorLuc Sinet <[email protected]>2021-07-31 16:12:29 +0200
committerGitHub <[email protected]>2021-07-31 14:12:29 +0000
commitfe5daa722fb75ad85c24936cbb645018bb9d655b (patch)
treefbba8ec7642555e29a7b611f2dfc0e5a0c107188 /lua/lsp/signs.lua
parentcf16a2e826774e89d1bfe5812b6f73c3dd049db2 (diff)
[Feature] Expose lsp config (#1156)
Diffstat (limited to 'lua/lsp/signs.lua')
-rw-r--r--lua/lsp/signs.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/lua/lsp/signs.lua b/lua/lsp/signs.lua
deleted file mode 100644
index fab6d302..00000000
--- a/lua/lsp/signs.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-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