diff options
Diffstat (limited to '')
-rw-r--r-- | after/plugin/lsplines.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/after/plugin/lsplines.lua b/after/plugin/lsplines.lua new file mode 100644 index 0000000..dcda047 --- /dev/null +++ b/after/plugin/lsplines.lua @@ -0,0 +1,13 @@ +local status_ok, lines = pcall(require, "lsp_lines") +if not status_ok then + return +end + +lines.setup {} + +vim.diagnostic.config { + virtual_lines = { + highlight_whole_line = true, + only_current_line = true + } +} |