navarasu / onedark.nvim

One dark and light colorscheme for neovim >= 0.5.0 written in lua based on Atom's One Dark and Light theme. Additionally, it comes with 5 color variant styles
MIT License
1.61k stars 163 forks source link

How to hide the horizontal line between nvim tree and the editor buffer? #162

Open ak-seyam opened 1 year ago

ak-seyam commented 1 year ago

How can I hide the separating line?

Screenshot from 2023-04-23 00-32-13

carlosflorencio commented 7 months ago
  {
    'navarasu/onedark.nvim',
    enabled = true,
    lazy = false,
    priority = 1000,
    config = function()
      require('onedark').setup {}
      require('onedark').load()
      -- hide line separator
      vim.api.nvim_set_hl(0, "NvimTreeWinSeparator", { link = "Ignore" })
    end,
  },