diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2020-11-08 13:06:10 +0000 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2020-11-08 14:39:39 +0000 |
| commit | 9ecc0e033820adb8a352777b10a409e1b3ea5471 (patch) | |
| tree | f109beba6acb8b2db8e1ad55519dabf648ab778a /emacs | |
| parent | 63c67b7cc814756832bbc3f1ff88af7d89c3ee8a (diff) | |
emacs: Set default frame size to 160x40
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 35c8582..06a6351 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -63,6 +63,8 @@ (add-to-list 'auto-mode-alist '("\\.service\\'" . conf-mode)) (add-to-list 'auto-mode-alist '("\\.timer\\'" . conf-mode)) (add-to-list 'auto-mode-alist '("/PKGBUILD\\'" . shell-script-mode)) +(add-to-list 'default-frame-alist '(height . 40)) +(add-to-list 'default-frame-alist '(width . 160)) (add-to-list 'magic-mode-alist '("#compdef .+" . sh-mode)) (when (display-graphic-p) |
