Skip to content

Commit 9de0d52

Browse files
disable virtual lines
1 parent 5a00d18 commit 9de0d52

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lua/modules/completion/plugins.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ completion({
1212
lazy = true,
1313
},
1414
{ "hrsh7th/cmp-nvim-lsp", lazy = true },
15-
{ "hrsh7th/cmp-buffer", lazy = true },
16-
{ "hrsh7th/cmp-path", lazy = true },
15+
{ "hrsh7th/cmp-buffer", lazy = true },
16+
{ "hrsh7th/cmp-path", lazy = true },
1717
{
1818
"petertriho/cmp-git",
1919
lazy = true,

lua/modules/lsp/settings/lsp_config.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ local config = {
127127
severity_sort = true,
128128
update_in_insert = true,
129129
virtual_text = false,
130-
virtual_lines = { only_current_line = true },
130+
virtual_lines = false,
131131
--INFO: Cannot use vim.fn.sign_define (deprecated)
132132
signs = {
133133
text = {
134134
[vim.diagnostic.severity.ERROR] = "",
135135
[vim.diagnostic.severity.WARN] = "",
136136
[vim.diagnostic.severity.HINT] = "",
137-
[vim.diagnostic.severity.INFO] = "",
137+
[vim.diagnostic.severity.INFO] = ""
138138
},
139139
},
140140
float = {

0 commit comments

Comments
 (0)