Centaur tabs icons has weird border
gabriel376 opened this issue · 0 comments
gabriel376 commented
Centaur tabs icons has weird border
How to reproduce:
(setq package-archives '(("melpa" . "http://melpa.org/packages/")))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(use-package centaur-tabs
:ensure t
:demand
:config
(setq centaur-tabs-set-icons t)
(centaur-tabs-mode t))
(use-package all-the-icons
:ensure t
:config
(all-the-icons-install-fonts t))
(setq custom-safe-themes t)
(use-package zenburn-theme
:ensure t
:config
(load-theme 'zenburn))
If I change the theme, the icons looks fine
(setq package-archives '(("melpa" . "http://melpa.org/packages/")))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(use-package centaur-tabs
:ensure t
:demand
:config
(setq centaur-tabs-set-icons t)
(centaur-tabs-mode t))
(use-package all-the-icons
:ensure t
:config
(all-the-icons-install-fonts t))
(setq custom-safe-themes t)
(use-package nord-theme
:ensure t
:config
(load-theme 'nord))