pojokcodeid.nvim-lazy/lua/custom/plugins/lsp-line.lua

21 lines
547 B
Lua
Raw Permalink Normal View History

2023-03-16 17:56:13 +07:00
return {
2023-04-07 09:36:47 +07:00
-- "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,
2023-03-16 17:56:13 +07:00
}