mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
Fixed some fonts and icons
This commit is contained in:
parent
87443f927f
commit
4ee46891b0
|
@ -241,8 +241,10 @@
|
|||
'(org-level-5 :inherit outline-5 :height 1.1)
|
||||
'(org-level-6 :inherit outline-6 :height 1.05)
|
||||
'(org-level-7 :inherit outline-7 :height 1.05)
|
||||
'(variable-pitch :family "Intel One Mono")
|
||||
)
|
||||
|
||||
|
||||
(after! org (org-eldoc-load))
|
||||
|
||||
(with-eval-after-load 'org (global-org-modern-mode))
|
||||
|
@ -1244,6 +1246,9 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
(setq magit-todos-keywords-list '("TODO" "FIXME" "HACK" "REVIEW" "DEPRECATED" "BUG"))
|
||||
(magit-todos-mode 1)
|
||||
|
||||
(require 'all-the-icons-ibuffer)
|
||||
(add-hook 'ibuffer-mode-hook #'all-the-icons-ibuffer-mode)
|
||||
(setq all-the-icons-ibuffer-color-icon t)
|
||||
(evil-set-initial-state 'ibuffer-mode 'motion)
|
||||
(evil-define-key 'motion 'ibuffer-mode
|
||||
"j" 'evil-next-visual-line
|
||||
|
@ -1255,6 +1260,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
;;;------ dired configuration ------;;;
|
||||
|
||||
(add-hook 'dired-mode-hook 'all-the-icons-dired-mode)
|
||||
(setq all-the-icons-dired-monochrome nil)
|
||||
|
||||
(map! :desc "Increase font size"
|
||||
"C-=" 'text-scale-increase
|
||||
|
@ -1349,6 +1355,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
(require 'mu4e-actions)
|
||||
|
||||
(after! mu4e
|
||||
(setq mu4e-modeline-support nil)
|
||||
(setq mu4e-sent-folder (lambda (msg) (concat "/" (nth 1 (split-string (mu4e-message-field msg :maildir) "/" )) "/Sent")))
|
||||
(setq mu4e-drafts-folder (lambda (msg) (concat "/" user-mail-address "/Drafts")))
|
||||
(setq mu4e-trash-folder (lambda (msg) (concat "/" (nth 1 (split-string (mu4e-message-field msg :maildir) "/" )) "/Trash")))
|
||||
|
|
|
@ -311,8 +311,10 @@ Doom Emacs is traditionally installed by cloning the repository ([[https://githu
|
|||
'(org-level-5 :inherit outline-5 :height 1.1)
|
||||
'(org-level-6 :inherit outline-6 :height 1.05)
|
||||
'(org-level-7 :inherit outline-7 :height 1.05)
|
||||
'(variable-pitch :family "Intel One Mono")
|
||||
)
|
||||
|
||||
|
||||
(after! org (org-eldoc-load))
|
||||
|
||||
(with-eval-after-load 'org (global-org-modern-mode))
|
||||
|
@ -1462,6 +1464,9 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
#+END_SRC
|
||||
** Ibuffer Configuration
|
||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
||||
(require 'all-the-icons-ibuffer)
|
||||
(add-hook 'ibuffer-mode-hook #'all-the-icons-ibuffer-mode)
|
||||
(setq all-the-icons-ibuffer-color-icon t)
|
||||
(evil-set-initial-state 'ibuffer-mode 'motion)
|
||||
(evil-define-key 'motion 'ibuffer-mode
|
||||
"j" 'evil-next-visual-line
|
||||
|
@ -1476,6 +1481,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
;;;------ dired configuration ------;;;
|
||||
|
||||
(add-hook 'dired-mode-hook 'all-the-icons-dired-mode)
|
||||
(setq all-the-icons-dired-monochrome nil)
|
||||
|
||||
(map! :desc "Increase font size"
|
||||
"C-=" 'text-scale-increase
|
||||
|
@ -1607,6 +1613,7 @@ I don't have this active right now since it's kinda weird with pgtk...
|
|||
(require 'mu4e-actions)
|
||||
|
||||
(after! mu4e
|
||||
(setq mu4e-modeline-support nil)
|
||||
(setq mu4e-sent-folder (lambda (msg) (concat "/" (nth 1 (split-string (mu4e-message-field msg :maildir) "/" )) "/Sent")))
|
||||
(setq mu4e-drafts-folder (lambda (msg) (concat "/" user-mail-address "/Drafts")))
|
||||
(setq mu4e-trash-folder (lambda (msg) (concat "/" (nth 1 (split-string (mu4e-message-field msg :maildir) "/" )) "/Trash")))
|
||||
|
@ -2049,6 +2056,7 @@ Any git package can be configured for a particular commit or branch:
|
|||
(package! org-yt)
|
||||
(package! toc-org)
|
||||
(package! lister)
|
||||
(package! all-the-icons-ibuffer)
|
||||
(package! all-the-icons-dired)
|
||||
(package! all-the-icons-completion)
|
||||
(package! ox-reveal)
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
(package! org-yt)
|
||||
(package! toc-org)
|
||||
(package! lister)
|
||||
(package! all-the-icons-ibuffer)
|
||||
(package! all-the-icons-dired)
|
||||
(package! all-the-icons-completion)
|
||||
(package! ox-reveal)
|
||||
|
|
Loading…
Reference in a new issue