NvChad / ui

Lightweight & high performance UI plugin for nvchad
GNU General Public License v3.0
208 stars 124 forks source link

Enable/Disable specific UIs #343

Closed blazkowolf closed 4 hours ago

blazkowolf commented 13 hours ago

I noticed tabufline has the helpful option to disable it like so.

M.ui = {
  tabufline = { enabled = false },
}

I couldn't find the same option for the other UI integrations. Is there an alternative method for disabling the UIs I don't want to use?

I love this plugin for its beautiful UI, but I'd like to disable the ones I don't want to use so they don't conflict with custom configuration that I have.

Thanks in advance for any info, and thanks for the great work!

siduck commented 13 hours ago

which ones ?

statusline can be disabled by just vim.o.stl ="" , in the config function of UI plugin

blazkowolf commented 4 hours ago

@siduck statusline is the main one I'd like to disable from this plugin because I prefer the vanilla Neovim statusline. I'll try your suggestion when I'm at my computer - Thanks!