diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 14 |
1 files changed, 9 insertions, 5 deletions
| @@ -186,11 +186,6 @@ | |||
| 186 | 186 | ||
| 187 | ;; Miscellany | 187 | ;; Miscellany |
| 188 | 188 | ||
| 189 | (set-face-attribute 'default | ||
| 190 | nil | ||
| 191 | :font "Input Mono" | ||
| 192 | :height 130) | ||
| 193 | |||
| 194 | (set-fill-width 120 t) | 189 | (set-fill-width 120 t) |
| 195 | (set-tab-usage nil t) | 190 | (set-tab-usage nil t) |
| 196 | (set-tab-width 4 t) | 191 | (set-tab-width 4 t) |
| @@ -420,6 +415,15 @@ | |||
| 420 | ;; This actually has to be hooked to after-init to be one of the first minor modes enabled | 415 | ;; This actually has to be hooked to after-init to be one of the first minor modes enabled |
| 421 | :hook (after-init . envrc-global-mode)) | 416 | :hook (after-init . envrc-global-mode)) |
| 422 | 417 | ||
| 418 | (use-package faces | ||
| 419 | :straight '(faces :type built-in) | ||
| 420 | :custom-face | ||
| 421 | (default ((t (:weight medium | ||
| 422 | :slant normal | ||
| 423 | :width normal | ||
| 424 | :font "Input Mono" | ||
| 425 | :height 130))))) | ||
| 426 | |||
| 423 | (use-package gcmh | 427 | (use-package gcmh |
| 424 | :straight t | 428 | :straight t |
| 425 | :custom | 429 | :custom |