This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Copyright 2020 Nicolas Rougier - BSD License | |
;; Usage: emacs -q -l bordered.el | |
(set-face-font 'default "Roboto Mono Light 14") | |
(setq default-frame-alist | |
(append (list '(width . 72) '(height . 40) | |
'(vertical-scroll-bars . nil) | |
'(internal-border-width . 0) | |
'(font . "Roboto Mono Light 14")))) | |
(set-frame-parameter (selected-frame) | |
'internal-border-width 0) |