Improving fonts
This commit is contained in:
18
home.org
18
home.org
@@ -668,7 +668,7 @@ Save the minibuffer history to disk, so recently-used options show up at the top
|
|||||||
(savehist-mode)
|
(savehist-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
The doom modeline looks nice. I'm turning off irc notifications, because it was slow to update (and it would update after every command, slowing down everything). I don't need the workspace name when I have the tab bar at the top of the window. The other settings just clear up some space, and make things look at little nicer.
|
The doom modeline looks nice. I'm turning off IRC notifications, because it was slow to update (and it would update after every command, slowing down everything). I don't need the workspace name when I have the tab bar at the top of the window. The other settings just clear up some space, and make things look at little nicer.
|
||||||
|
|
||||||
#+BEGIN_SRC elisp :noweb-ref emacs_config
|
#+BEGIN_SRC elisp :noweb-ref emacs_config
|
||||||
(setq doom-modeline-irc nil)
|
(setq doom-modeline-irc nil)
|
||||||
@@ -1275,7 +1275,6 @@ I had some weird problems with jsx code where the default M-q would just do a te
|
|||||||
:END:
|
:END:
|
||||||
|
|
||||||
#+BEGIN_SRC nix :noweb-ref emacs_packages
|
#+BEGIN_SRC nix :noweb-ref emacs_packages
|
||||||
org-bullets
|
|
||||||
org-modern
|
org-modern
|
||||||
org-roam
|
org-roam
|
||||||
verb
|
verb
|
||||||
@@ -1321,7 +1320,15 @@ I had some weird problems with jsx code where the default M-q would just do a te
|
|||||||
org-agenda-tags-todo-honor-ignore-options t
|
org-agenda-tags-todo-honor-ignore-options t
|
||||||
org-id-link-to-org-use-id t
|
org-id-link-to-org-use-id t
|
||||||
org-enforce-todo-dependencies t
|
org-enforce-todo-dependencies t
|
||||||
org-agenda-dim-blocked-tasks 'invisible))
|
org-agenda-dim-blocked-tasks 'invisible)
|
||||||
|
(set-face-attribute 'org-level-1 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-2 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-3 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-4 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-5 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-6 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-7 nil :font "Iosevka Aile")
|
||||||
|
(set-face-attribute 'org-level-8 nil :font "Iosevka Aile"))
|
||||||
|
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
:bind (("C-c n l" . org-roam-buffer-toggle)
|
:bind (("C-c n l" . org-roam-buffer-toggle)
|
||||||
@@ -1333,9 +1340,6 @@ I had some weird problems with jsx code where the default M-q would just do a te
|
|||||||
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
||||||
(org-roam-db-autosync-mode))
|
(org-roam-db-autosync-mode))
|
||||||
|
|
||||||
;(use-package org-bullets
|
|
||||||
; :hook org-mode-hook)
|
|
||||||
|
|
||||||
(use-package org-modern
|
(use-package org-modern
|
||||||
:hook org-mode-hook)
|
:hook org-mode-hook)
|
||||||
|
|
||||||
@@ -1514,5 +1518,5 @@ I like Catppuccin Frappe as my theme. Let's use it in as many places as we can.
|
|||||||
;; (set-face-attribute 'fixed-pitch nil :font "JetBrainsMono Nerd Font" :height 130)
|
;; (set-face-attribute 'fixed-pitch nil :font "JetBrainsMono Nerd Font" :height 130)
|
||||||
(set-face-attribute 'default nil :font "Iosevka" :height 130 :width 'expanded)
|
(set-face-attribute 'default nil :font "Iosevka" :height 130 :width 'expanded)
|
||||||
(set-face-attribute 'fixed-pitch nil :font "Iosevka" :height 130 :width 'expanded)
|
(set-face-attribute 'fixed-pitch nil :font "Iosevka" :height 130 :width 'expanded)
|
||||||
(set-face-attribute 'variable-pitch nil :font "Iosevka Aile" :height 130)
|
(set-face-attribute 'variable-pitch nil :font "Iosevka Etoile" :height 130)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
Reference in New Issue
Block a user