more changes
This commit is contained in:
parent
af8997ff65
commit
180f8aa728
14
init.el
14
init.el
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in New Issue