Skip to content

Commit

Permalink
tweak(emacs): font size and weight
Browse files Browse the repository at this point in the history
Also fixed issues with icons being cut off. Apparently that's
because of using semi-bold instead of normal weight.
  • Loading branch information
gekoke committed Dec 20, 2023
1 parent 234ab2a commit 3c311cf
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions modules/nixos/programs/emacs/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
:config
(remember-last-theme-enable))

(set-frame-font "Iosevka Nerd Font:pixelsize=15:weight=normal" nil t)
(set-frame-font "Iosevka Nerd Font:pixelsize=18:weight=normal" nil t)

(use-package ligature
:config
Expand Down Expand Up @@ -335,9 +335,6 @@

(dirvish-media-auto-cache-threshold '(500 . 8))

(dired-listing-switches
"-l --almost-all --human-readable --group-directories-first --no-group")

(dired-mouse-drag-files t)
(mouse-drag-and-drop-region-cross-program t)

Expand Down Expand Up @@ -383,13 +380,6 @@
(setq dired-omit-files
(concat dired-omit-files "\\|^\\..*$")))

(use-package diredfl
:hook
(dired-mode . diredfl-mode)
(dirvish-directory-view-mode . diredfl-mode)
:config
(set-face-attribute 'diredfl-dir-name nil :bold t))

(use-package dired
:ensure nil
:hook (dired-mode . dired-omit-mode))
Expand Down

0 comments on commit 3c311cf

Please sign in to comment.