diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-18 00:43:56 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-18 00:43:56 +0100 |
commit | d03059753d028f8bd44c9d69e6acdb41bc449d6f (patch) | |
tree | 8a9e19315bcaf6956774cd66edd1d5d53b74b3fe /Emacs/.config/emacs | |
parent | 8debeb262f98c7d65c4c129afa6229579b5d5d3c (diff) | |
download | dotfiles-d03059753d028f8bd44c9d69e6acdb41bc449d6f.tar.gz dotfiles-d03059753d028f8bd44c9d69e6acdb41bc449d6f.tar.bz2 dotfiles-d03059753d028f8bd44c9d69e6acdb41bc449d6f.zip |
+make frame resize pixelwise
On dwm this leads to an issue in Emacs where the frame is slightly off
the max size of the screen which is really annoying.
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/early-init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/early-init.el b/Emacs/.config/emacs/early-init.el index 8ed7e5f..a3f07d7 100644 --- a/Emacs/.config/emacs/early-init.el +++ b/Emacs/.config/emacs/early-init.el @@ -5,7 +5,8 @@ (setq gc-cons-threshold most-positive-fixnum package-enable-at-startup nil - frame-inhibit-implied-resize t) + frame-inhibit-implied-resize nil + frame-resize-pixelwise t) (push '(menu-bar-lines . 0) default-frame-alist) (push '(tool-bar-lines . 0) default-frame-alist) (push '(vertical-scroll-bars) default-frame-alist) |