diff options
author | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:31:04 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:31:04 -0400 |
commit | d968ff639be3b6ecddb6ae224f3804f4eea566ba (patch) | |
tree | dc5f8c7120c43faaae75212cf0cf90bdc5a56d51 /after | |
parent | b19167a1ab1e6d3c21d67788d404c159aeaaf306 (diff) | |
download | nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.tar.gz nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.tar.bz2 nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.zip |
remove unused function from lsp.lua and add more lsp plugins!
Diffstat (limited to '')
-rw-r--r-- | after/plugin/lsp.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index 4e5d3fa..a8932c1 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -35,13 +35,6 @@ set_lsp_sign("DiagnosticSignInfo" , "i") set_lsp_sign("DiagnosticSignHint" , "h") local function lsp_settings() - local sign = function(opts) - vim.fn.sign_define(opts.name, { - texthl = opts.name, - text = opts.text, - numhl = '' - }) - end vim.diagnostic.config({ virtual_text = false, |