mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-21 19:24:54 +02:00
enc: change indent blank line
This commit is contained in:
parent
aa2f3a49ef
commit
c29942d4a7
3 changed files with 25 additions and 3 deletions
|
@ -22,7 +22,7 @@
|
|||
"dressing.nvim": { "branch": "master", "commit": "2d7c2db2507fa3c4956142ee607431ddb2828639" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "0cb5a7753d3c4b8e9cfdc9d88d9110cb8d4b1544" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" },
|
||||
"hlchunk.nvim": { "branch": "main", "commit": "474ec5d0f220158afa83aaefab32402e710d3032" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
|
||||
"lsp_signature.nvim": { "branch": "master", "commit": "d9c39937e4e0977357530e988aa8940078bb231f" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "a94fc68960665e54408fe37dcf573193c4ce82c9" },
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
return {
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
--[[ "lukas-reineke/indent-blankline.nvim",
|
||||
-- version = "3.5.4",
|
||||
event = { "BufRead", "InsertEnter", "BufNewFile" },
|
||||
lazy = true,
|
||||
|
@ -35,5 +35,5 @@ return {
|
|||
},
|
||||
},
|
||||
},
|
||||
main = "ibl",
|
||||
main = "ibl", ]]
|
||||
}
|
||||
|
|
22
lua/pcode/plugins/indentline.lua
Normal file
22
lua/pcode/plugins/indentline.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
"shellRaining/hlchunk.nvim",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
config = function()
|
||||
require("hlchunk").setup({
|
||||
chunk = {
|
||||
enable = true,
|
||||
-- ...
|
||||
},
|
||||
indent = {
|
||||
enable = true,
|
||||
-- ...
|
||||
},
|
||||
exclude_filetypes = {
|
||||
aerial = true,
|
||||
dashboard = true,
|
||||
alpha = true,
|
||||
-- some other filetypes
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue