aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/indent-blankline.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/indent-blankline.lua')
-rw-r--r--nvim/lua/plugins/indent-blankline.lua26
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"
+ },
+ },
+ },
}