onedark.nvim icon indicating copy to clipboard operation
onedark.nvim copied to clipboard

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

Open ak-seyam opened this issue 1 year ago • 1 comments

How can I hide the separating line?

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

ak-seyam avatar Apr 22 '23 22:04 ak-seyam

  {
    '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,
  },

carlosflorencio avatar Apr 18 '24 22:04 carlosflorencio