Emacs fira-code-mode fix
This commit is contained in:
parent
ef8529ad34
commit
a418f26cd7
2 changed files with 6 additions and 11 deletions
|
@ -10,10 +10,11 @@
|
||||||
)
|
)
|
||||||
|
|
||||||
(use-package fira-code-mode
|
(use-package fira-code-mode
|
||||||
:custom (fira-code-mode-disabled-ligatures '("x")) ;; List of ligatures to turn off
|
;;:custom (fira-code-mode-disabled-ligatures '("x")) ;; List of ligatures to turn off
|
||||||
:config
|
:config (progn
|
||||||
(fira-code-mode-set-font)
|
(global-fira-code-mode)
|
||||||
(global-fira-code-mode))
|
;;TODO: why a timer is needed? It shouldn't
|
||||||
|
(run-at-time "30 sec" nil #'set-fontset-font t '(#Xe100 . #Xe16f) "Fira Code Symbol")))
|
||||||
|
|
||||||
(use-package visual-fill-column
|
(use-package visual-fill-column
|
||||||
:commands (visual-fill-column-mode)
|
:commands (visual-fill-column-mode)
|
||||||
|
@ -39,8 +40,6 @@
|
||||||
:bind (("<next>" . #'good-scroll-up-full-screen)
|
:bind (("<next>" . #'good-scroll-up-full-screen)
|
||||||
("<prior>" . #'good-scroll-down-full-screen)))
|
("<prior>" . #'good-scroll-down-full-screen)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(use-package rainbow-identifiers
|
(use-package rainbow-identifiers
|
||||||
:hook ((prog-mode . rainbow-identifiers-mode)))
|
:hook ((prog-mode . rainbow-identifiers-mode)))
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,8 @@
|
||||||
(require 'org-protocol)
|
(require 'org-protocol)
|
||||||
:custom
|
:custom
|
||||||
(org-startup-folded 'fold)
|
(org-startup-folded 'fold)
|
||||||
<<<<<<< HEAD
|
|
||||||
(org-startup-indented nil)
|
|
||||||
=======
|
|
||||||
(org-startup-indented f)
|
(org-startup-indented f)
|
||||||
>>>>>>> 087566ed5f0d08df2e0b36e4c80398f5c0d26c22
|
(org-startup-indented nil)
|
||||||
(org-agenda-files '("~/roam/" "~/orgzly~"))
|
(org-agenda-files '("~/roam/" "~/orgzly~"))
|
||||||
(org-ellipsis "⤵")
|
(org-ellipsis "⤵")
|
||||||
(org-pretty-entities t)
|
(org-pretty-entities t)
|
||||||
|
@ -52,7 +49,6 @@
|
||||||
(use-package org-superstar
|
(use-package org-superstar
|
||||||
:custom
|
:custom
|
||||||
(org-superstar-special-todo-items t)
|
(org-superstar-special-todo-items t)
|
||||||
(org-superstar-headline-bullets-list '("\u200b"))
|
|
||||||
:hook
|
:hook
|
||||||
(('org-mode . (lambda () (org-superstar-mode 1)))))
|
(('org-mode . (lambda () (org-superstar-mode 1)))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue