nvimdev / dashboard-nvim

vim dashboard
MIT License
2.3k stars 187 forks source link

Indent Lines #351

Closed AndreM222 closed 1 year ago

AndreM222 commented 1 year ago

indent-blankline seems to have a problem with dashboard, Acording to this issue is because of the new update which buftype=nofile has been removed. https://github.com/lukas-reineke/indent-blankline.nvim/issues/566 image

glepnir commented 1 year ago

put dashboard into g:indent_blankline_filetype_exclude not work ?

glepnir commented 1 year ago

lua version vim.g.indent_blankline_filetype_exclude = {'dashboard'}

AndreM222 commented 1 year ago

It did thank you 😊

small heads up change [ for { for anyone who needs it

vim.g.indent_blankline_filetype_exclude = {'dashboard'}

raffaem commented 2 months ago

For indent-blankline.nvim version 3, use:

require("ibl").setup({
  exclude = {
    filetypes = { "dashboard" },
  }
})

See: https://github.com/lukas-reineke/indent-blankline.nvim/wiki/Migrate-to-version-3#configuration-variables