Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seems to conflict with indentLine plugin #20

Open
ragu-manjegowda opened this issue Feb 2, 2023 · 1 comment
Open

Seems to conflict with indentLine plugin #20

ragu-manjegowda opened this issue Feb 2, 2023 · 1 comment

Comments

@ragu-manjegowda
Copy link

ragu-manjegowda commented Feb 2, 2023

Plugin seems to conflict with https://github.com/Yggdroot/indentLine.

  1. It does not let indentLine enable.
  2. Animation starts drawing signs from indentLine plugin.
@ragu-manjegowda ragu-manjegowda changed the title c Seems to conflict with https://github.com/Yggdroot/indentLine Feb 2, 2023
@ragu-manjegowda ragu-manjegowda changed the title Seems to conflict with https://github.com/Yggdroot/indentLine Seems to conflict with indentLine plugin Feb 2, 2023
@AB10110F
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants