-
-
Notifications
You must be signed in to change notification settings - Fork 231
Disable Indentline for dashboard #383
Comments
Yes. You may use the following vimscript to disable augroup disableIndentlineDb
autocmd!
au FileType dashboard let b:indentLine_enabled = 0
augroup END Check |
thank you for your reply, i am using Lua, so in the end I used this |
You'd better use vim.cmd[[
augroup disableIndentlineDb
autocmd! -- clear cmds in this group first to avoid duplication
au FileType dashboard let b:indentLine_enabled = 0
augroup END
]] Every time you source your configuration.
Besides, if you are preferable to a lua-style configuration for autocommands, please refer to |
thanks, I will implement it, :) |
There is any way to disable for filestype? the indent lines is render on my dashboard :(
The text was updated successfully, but these errors were encountered: