projekt0n / github-nvim-theme

GitHub's Neovim themes
MIT License
2.08k stars 105 forks source link

my icon color is overweitten #181

Closed AmelloAster closed 2 years ago

AmelloAster commented 2 years ago
image
AmelloAster commented 2 years ago

when i use require('github-theme').setup() to change style config it will overweitten icon color

ful1e5 commented 2 years ago

when i use require('github-theme').setup() to change style config it will overweitten icon color

Try to load icons after github-nvim-theme.

  use({
    '~/GitHub/projekt0n/github-nvim-theme',
    config = function()
      -- github theme config
    end,
  })
  use({
    'kyazdani42/nvim-web-devicons',
    after = 'github-nvim-theme'
  })
AmelloAster commented 2 years ago

I'm use vim-plug to manage plug,so I move github theme on the top,still not working

image
mycf commented 2 years ago

me too