mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +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
|
@ -23,6 +23,7 @@
|
||||||
"lazy.nvim": { "branch": "main", "commit": "6ca23c15f64e88e3ba26be9795343c4c7f2ee851" },
|
"lazy.nvim": { "branch": "main", "commit": "6ca23c15f64e88e3ba26be9795343c4c7f2ee851" },
|
||||||
"live-server.nvim": { "branch": "main", "commit": "f34ae262bf046981d9e5f7cd4f41a353a9647a22" },
|
"live-server.nvim": { "branch": "main", "commit": "f34ae262bf046981d9e5f7cd4f41a353a9647a22" },
|
||||||
"lsp-progress.nvim": { "branch": "main", "commit": "c5858bba2043cac5ad4113fe1263366125b1b314" },
|
"lsp-progress.nvim": { "branch": "main", "commit": "c5858bba2043cac5ad4113fe1263366125b1b314" },
|
||||||
|
"lsp_lines.nvim": { "branch": "main", "commit": "2f17072aa2a8c566237c5ab0c70f32d13e2f6e46" },
|
||||||
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
|
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
|
||||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "9ae570e206360e47d30b4c35a4550c165f4ea7b7" },
|
"mason-lspconfig.nvim": { "branch": "main", "commit": "9ae570e206360e47d30b4c35a4550c165f4ea7b7" },
|
||||||
"mason-nvim-dap.nvim": { "branch": "main", "commit": "4ba55f9755ebe8297d92c419b90a946123292ae6" },
|
"mason-nvim-dap.nvim": { "branch": "main", "commit": "4ba55f9755ebe8297d92c419b90a946123292ae6" },
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
return {
|
return {
|
||||||
-- "ErichDonGubler/lsp_lines.nvim",
|
-- "abzcoding/lsp_lines.nvim",
|
||||||
-- event = "BufRead",
|
-- event = "BufRead",
|
||||||
-- config = function()
|
-- config = function()
|
||||||
-- require("lsp_lines").setup()
|
-- require("lsp_lines").setup()
|
||||||
-- vim.api.nvim_create_autocmd("FileType", {
|
-- vim.api.nvim_create_autocmd("FileType", {
|
||||||
-- pattern = { "*" }, --ini untuk file yang tidak ingin dibaca
|
-- pattern = { "*" }, --ini untuk file yang tidak ingin dibaca
|
||||||
-- callback = function()
|
-- callback = function()
|
||||||
-- local exclude_ft = {
|
-- local exclude_ft = {
|
||||||
-- "lazy",
|
-- "lazy",
|
||||||
-- }
|
-- }
|
||||||
-- if vim.tbl_contains(exclude_ft, vim.o.filetype) then
|
-- if vim.tbl_contains(exclude_ft, vim.o.filetype) then
|
||||||
-- vim.diagnostic.config({ virtual_lines = false })
|
-- vim.diagnostic.config({ virtual_lines = false })
|
||||||
-- else
|
-- else
|
||||||
-- vim.diagnostic.config({ virtual_lines = true })
|
-- vim.diagnostic.config({ virtual_lines = true })
|
||||||
-- end
|
-- end
|
||||||
-- end,
|
-- end,
|
||||||
-- })
|
-- })
|
||||||
-- end,
|
-- end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue