Skip to content

Commit 8dc9716

Browse files
committed
Add indent guides plugin
1 parent ed794cc commit 8dc9716

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

dot_config/nvim/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ require('lazy').setup({
888888
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
889889
--
890890
-- require 'kickstart.plugins.debug',
891-
-- require 'kickstart.plugins.indent_line',
891+
require 'kickstart.plugins.indent_line',
892892
-- require 'kickstart.plugins.lint',
893893
require 'kickstart.plugins.autopairs',
894894
require 'kickstart.plugins.neo-tree',

dot_config/nvim/lazy-lock.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"fidget.nvim": { "branch": "main", "commit": "4d5858bd4c471c895060e1b9f3575f1551184dc5" },
66
"gitsigns.nvim": { "branch": "main", "commit": "6e3c66548035e50db7bd8e360a29aec6620c3641" },
77
"guess-indent.nvim": { "branch": "main", "commit": "84a4987ff36798c2fc1169cbaff67960aed9776f" },
8+
"indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" },
89
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
910
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
1011
"mason-lspconfig.nvim": { "branch": "main", "commit": "5e085efe67fccb13372d54331d849219662a7e93" },
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
return {
2+
{ -- Add indentation guides even on blank lines
3+
'lukas-reineke/indent-blankline.nvim',
4+
-- Enable `lukas-reineke/indent-blankline.nvim`
5+
-- See `:help ibl`
6+
main = 'ibl',
7+
opts = {},
8+
},
9+
}

0 commit comments

Comments
 (0)