virtual lines fix
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
local use_google = require("utils").use_google
|
||||
local tprint = require("utils").tprint
|
||||
local dump = require("utils").dump
|
||||
-- local tprint = require("utils").tprint
|
||||
-- local dump = require("utils").dump
|
||||
local log = require("utils").log
|
||||
local notify = require 'notify'
|
||||
|
||||
@ -349,17 +349,7 @@ cmp.setup({
|
||||
cmp.config.compare.offset,
|
||||
cmp.config.compare.exact,
|
||||
cmp.config.compare.score,
|
||||
function(entry1, entry2)
|
||||
local _, entry1_under = entry1.completion_item.label:find("^_+")
|
||||
local _, entry2_under = entry2.completion_item.label:find("^_+")
|
||||
entry1_under = entry1_under or 0
|
||||
entry2_under = entry2_under or 0
|
||||
if entry1_under > entry2_under then
|
||||
return false
|
||||
elseif entry1_under < entry2_under then
|
||||
return true
|
||||
end
|
||||
end,
|
||||
require "cmp-under-comparator".under,
|
||||
cmp.config.compare.kind,
|
||||
cmp.config.compare.sort_text,
|
||||
cmp.config.compare.length,
|
||||
|
@ -1,3 +1,18 @@
|
||||
vim.diagnostic.config({
|
||||
virtual_text = {
|
||||
prefix = '■', -- Could be '●', '▎', 'x'
|
||||
},
|
||||
virtual_lines = false,
|
||||
severity_sort = true,
|
||||
})
|
||||
|
||||
vim.keymap.set(
|
||||
"",
|
||||
"<Leader>l",
|
||||
require("lsp_lines").toggle,
|
||||
{ desc = "Toggle lsp_lines" }
|
||||
)
|
||||
|
||||
-- Diagnostics
|
||||
require("trouble").setup({
|
||||
signs = {
|
||||
|
Reference in New Issue
Block a user