more changes

This commit is contained in:
~d6 2022-05-04 14:29:15 -04:00
parent af8997ff65
commit 180f8aa728
1 changed files with 11 additions and 3 deletions

14
init.el
View File

@ -47,7 +47,11 @@
;; install icons
(use-package all-the-icons
:if (display-graphic-p))
:if (display-graphic-p)
:config (let* ((old all-the-icons-mode-icon-alist)
(elem '(uxntal-mode all-the-icons-alltheicon "perl" :face all-the-icons-blue))
(new (cons elem old)))
(setq all-the-icons-mode-icon-alist new)))
;; show function names in modeline
(which-function-mode t)
@ -74,7 +78,8 @@
:config (add-hook 'prog-mode-hook 'pragmatapro-lig-mode))
;; line numbers
(global-display-line-numbers-mode t)
;(global-display-line-numbers-mode t)
(add-hook 'prog-mode-hook 'display-line-numbers-mode)
(setq display-line-numbers "%4d ")
;; allow y or n instead of yes or no
@ -271,8 +276,11 @@
:host github
:repo "doomemacs/themes")
:config (load-theme 'doom-badger t)
(setq doom-badger-brighter-comments t
doom-themes-treemacs-theme "doom-colors")
; (set-face-foreground-color 'font-lock-constant-face #635770)
(set-face-foreground 'font-lock-constant-face "#834980")
(doom-themes-neotree-config)
(setq doom-themes-treemacs-theme "doom-colors")
(doom-themes-treemacs-config)
(doom-themes-org-config))