Skip to content

Commit

Permalink
emacs: go back to fira
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz committed Jan 4, 2024
1 parent 38be99b commit bbde79c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions home/config/doom/config.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
(setq calendar-week-start-day 1) ;; start on monday
(setq org-agenda-include-diary t)

(setq doom-font (font-spec :family "Iosevka" :size 16)
doom-big-font (font-spec :family "Iosevka" :size 28 :weight 'normal)
doom-unicode-font (font-spec :family "Iosevka" :size 16 :weight 'normal)
doom-variable-pitch-font (font-spec :family "Iosevka" :size 16 :weight 'demibold))
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'light)
doom-big-font (font-spec :family "FiraCode Nerd Font" :size 28 :weight 'normal)
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'normal)
doom-variable-pitch-font (font-spec :family "Iosevka Slab" :size 14 :weight 'demibold))

(let* ((variable-tuple '(:font "Iosevka Slab"))
(headline `(:inherit default :weight black)))
Expand Down
8 changes: 4 additions & 4 deletions home/config/doom/config.org
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ Small utility to add a function to multiple hooks at once.
*** Typography
Base font settings
#+begin_src elisp
(setq doom-font (font-spec :family "Iosevka" :size 16)
doom-big-font (font-spec :family "Iosevka" :size 28 :weight 'normal)
doom-unicode-font (font-spec :family "Iosevka" :size 16 :weight 'normal)
doom-variable-pitch-font (font-spec :family "Iosevka" :size 16 :weight 'demibold))
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'light)
doom-big-font (font-spec :family "FiraCode Nerd Font" :size 28 :weight 'normal)
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'normal)
doom-variable-pitch-font (font-spec :family "Iosevka Slab" :size 14 :weight 'demibold))
#+end_src

Headline adjustments. They should be different in sice, not in color.
Expand Down
2 changes: 1 addition & 1 deletion home/scripts/codedirs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PROJECTS_DIR=${PROJECTS_DIR:-~/Code}

# Test
project_dirs() {
find "$PROJECTS_DIR" -maxdepth 1 -type d -not -path "$PROJECTS_DIR" | sort | xargs --max-lines=1 basename
find "$PROJECTS_DIR" -maxdepth 1 -type d -not -path "$PROJECTS_DIR" | sort | xargs -L 1 basename
}

query=${1:-''}
Expand Down

0 comments on commit bbde79c

Please sign in to comment.