all-the-icons
This commit is contained in:
parent
9c735e1210
commit
15a208050d
2 changed files with 10 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
;; UI/UX
|
;; Ui/UX
|
||||||
(setq inhibit-startup-message t)
|
(setq inhibit-startup-message t)
|
||||||
|
|
||||||
;; make it look like neovim a little
|
;; make it look like neovim a little
|
||||||
|
@ -89,16 +89,18 @@
|
||||||
(setq ivy-inital-inputs-alist nil))
|
(setq ivy-inital-inputs-alist nil))
|
||||||
|
|
||||||
;; doom themes
|
;; doom themes
|
||||||
|
|
||||||
(use-package doom-themes
|
(use-package doom-themes
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
;; Global settings (defaults)
|
;; Global settings (defaults)
|
||||||
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
||||||
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
||||||
|
;; load the theme
|
||||||
(load-theme 'doom-monokai-pro t)
|
(load-theme 'doom-monokai-pro t)
|
||||||
|
|
||||||
;; Enable flashing mode-line on errors
|
;; Enable flashing mode-line on errors
|
||||||
(doom-themes-visual-bell-config)
|
(doom-themes-visual-bell-config))
|
||||||
;; Enable custom neotree theme (all-the-icons must be installed!)
|
;; Enable custom neotree theme (all-the-icons must be installed!)
|
||||||
;;(doom-themes-neotree-config)
|
;;(doom-themes-neotree-config)
|
||||||
;; or for treemacs users
|
;; or for treemacs users
|
||||||
|
@ -113,6 +115,9 @@
|
||||||
:init (doom-modeline-mode 1)
|
:init (doom-modeline-mode 1)
|
||||||
:custom ((doom-modeline-height 35)))
|
:custom ((doom-modeline-height 35)))
|
||||||
|
|
||||||
|
;; all the icons
|
||||||
|
(use-package all-the-icons)
|
||||||
|
|
||||||
;; continue configuring from here
|
;; continue configuring from here
|
||||||
;; https://youtu.be/74zOY-vgkyw?t=3125
|
;; https://youtu.be/74zOY-vgkyw?t=3125
|
||||||
|
|
||||||
|
|
|
@ -20,5 +20,8 @@ in
|
||||||
source = ../../../../config/emacs;
|
source = ../../../../config/emacs;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
fonts.fonts = with pkgs; [
|
||||||
|
emacs-all-the-icons-fonts
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue