starter.nvim
starter.nvim copied to clipboard
indent-blankline problem
After launching:
Error detected while processing /home/yazu/var/nvim-repo/starter/config/nvim/init.lua:
You are trying to call the setup function of indent-blankline version 2, but you have version 3
installed.
Take a look at the GitHub wiki for instructions on how to migrate, or revert back to version 2.
It's possible to remove this message to change:
require('indent_blankline').setup {
to
require('ibl').setup {
But it's necessary to comment all lines within the block:
require('ibl').setup {
-- char = '┊',
-- filetype_exclude = { 'help' },
-- buftype_exclude = { 'terminal', 'nofile' },
-- show_trailing_blankline_indent = false,
}