aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/lsp_lines.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/plugins/lsp_lines.lua b/lua/plugins/lsp_lines.lua
deleted file mode 100644
index 5adcb8e..0000000
--- a/lua/plugins/lsp_lines.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-local status_ok, lsp_lines = pcall(require, "lsp_lines")
-if not status_ok then
- return
-end
-
-lsp_lines.setup()
-
-vim.keymap.set("n", "g?", function()
- local lines_enabled = not vim.diagnostic.config().virtual_lines
- vim.diagnostic.config(
- {
- virtual_lines = lines_enabled,
- virtual_text = not lines_enabled
- }
- )
-end, { noremap = true, silent = true })
-
-vim.diagnostic.config({
- virtual_text = true,
- virtual_lines = false
-})