mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
enc: move lsp line repository to abzcoding/lsp_lines.nvim
This commit is contained in:
parent
aa8f68d8aa
commit
b6711611ec
2 changed files with 19 additions and 18 deletions
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue