diff options
| author | ericmarin <maarin.eric@gmail.com> | 2026-04-29 21:12:05 +0200 |
|---|---|---|
| committer | ericmarin <maarin.eric@gmail.com> | 2026-07-27 15:55:03 +0200 |
| commit | 5a75ed84af8e58db80f3687e8f5237dee9876485 (patch) | |
| tree | 6b2fba6a3d5cb34ff647499185e12887658df24f /nvim/lua/plugins/indent-blankline.lua | |
| parent | 4373c2db3d54802735105bc3ca602214d94b9f16 (diff) | |
| download | dotfiles-5a75ed84af8e58db80f3687e8f5237dee9876485.tar.gz dotfiles-5a75ed84af8e58db80f3687e8f5237dee9876485.zip | |
Diffstat (limited to 'nvim/lua/plugins/indent-blankline.lua')
| -rw-r--r-- | nvim/lua/plugins/indent-blankline.lua | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/nvim/lua/plugins/indent-blankline.lua b/nvim/lua/plugins/indent-blankline.lua index 06298a0..af9cff8 100644 --- a/nvim/lua/plugins/indent-blankline.lua +++ b/nvim/lua/plugins/indent-blankline.lua @@ -1,14 +1,16 @@ return { - "lukas-reineke/indent-blankline.nvim", - lazy = true, - event = { "BufReadPost", "BufWritePost", "BufNewFile" }, - main = "ibl", - opts = { - exclude = { - filetypes = { - "dashboard", - "norg" - }, - }, - }, + "lukas-reineke/indent-blankline.nvim", + lazy = true, + event = { "BufReadPost", "BufWritePost", "BufNewFile" }, + main = "ibl", + ---@module "ibl" + ---@type ibl.config + opts = { + exclude = { + filetypes = { + "dashboard", + "norg" + }, + }, + }, } |
