enc: move lsp line repository to abzcoding/lsp_lines.nvim

This commit is contained in:
Pojok Code 2024-07-07 06:02:56 +07:00
parent aa8f68d8aa
commit b6711611ec
2 changed files with 19 additions and 18 deletions

View file

@ -1,20 +1,20 @@
return {
-- "ErichDonGubler/lsp_lines.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_lines").setup()
-- vim.api.nvim_create_autocmd("FileType", {
-- pattern = { "*" }, --ini untuk file yang tidak ingin dibaca
-- callback = function()
-- local exclude_ft = {
-- "lazy",
-- }
-- if vim.tbl_contains(exclude_ft, vim.o.filetype) then
-- vim.diagnostic.config({ virtual_lines = false })
-- else
-- vim.diagnostic.config({ virtual_lines = true })
-- end
-- end,
-- })
-- end,
-- "abzcoding/lsp_lines.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_lines").setup()
-- vim.api.nvim_create_autocmd("FileType", {
-- pattern = { "*" }, --ini untuk file yang tidak ingin dibaca
-- callback = function()
-- local exclude_ft = {
-- "lazy",
-- }
-- if vim.tbl_contains(exclude_ft, vim.o.filetype) then
-- vim.diagnostic.config({ virtual_lines = false })
-- else
-- vim.diagnostic.config({ virtual_lines = true })
-- end
-- end,
-- })
-- end,
}