cellular-automaton.nvim
cellular-automaton.nvim copied to clipboard
Seems to conflict with indentLine plugin
Plugin seems to conflict with https://github.com/Yggdroot/indentLine.
- It does not let indentLine enable.
- Animation starts drawing signs from indentLine plugin.
I use indent-blankline.nvim I solved it excluding "nofile" :
{
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup{
buftype_exclude = { "terminal", "nofile" },
filetype_exclude = { "dashboard","mason" },
} end,
},
I'm not sure how it would work on indentline. I checked the repo and perhaps you can try something like this
let g:indentLine_bufTypeExclude = get(g:, 'indentLine_bufTypeExclude', ['nofile'])
if you are using a mapping then you could execute two commands, one to begin or stop the animation and the other to toggle indentline.