diff --git a/lazy-lock.json b/lazy-lock.json index e1018ec..f8f06ae 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -23,6 +23,7 @@ "lazy.nvim": { "branch": "main", "commit": "6ca23c15f64e88e3ba26be9795343c4c7f2ee851" }, "live-server.nvim": { "branch": "main", "commit": "f34ae262bf046981d9e5f7cd4f41a353a9647a22" }, "lsp-progress.nvim": { "branch": "main", "commit": "c5858bba2043cac5ad4113fe1263366125b1b314" }, + "lsp_lines.nvim": { "branch": "main", "commit": "2f17072aa2a8c566237c5ab0c70f32d13e2f6e46" }, "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "9ae570e206360e47d30b4c35a4550c165f4ea7b7" }, "mason-nvim-dap.nvim": { "branch": "main", "commit": "4ba55f9755ebe8297d92c419b90a946123292ae6" }, diff --git a/lua/custom/plugins/lsp-line.lua b/lua/custom/plugins/lsp-line.lua index f7a90da..a84ce30 100644 --- a/lua/custom/plugins/lsp-line.lua +++ b/lua/custom/plugins/lsp-line.lua @@ -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, }