diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-06-17 22:07:22 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-06-17 22:26:23 +0800 |
commit | c3467ab08d162ed73a4bd511644a4e747c5488af (patch) | |
tree | 92b0f034b7c9dba5dfec822b15c051f625d89af1 /_spacemacs.d | |
parent | 7c0575dbc19d189b6274950a76e6aef9140475ab (diff) | |
download | dotfiles-c3467ab08d162ed73a4bd511644a4e747c5488af.tar.bz2 |
spacemacs.d/init.el: set the frame size
Diffstat (limited to '_spacemacs.d')
-rw-r--r-- | _spacemacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 168a146..4c4b4e4 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -289,6 +289,10 @@ ;; Separate line number from text using a vertical line (setq linum-format "%4d\u2502") ;; + ;; Set the default size for all frames + (add-to-list 'default-frame-alist '(width . 86)) + (add-to-list 'default-frame-alist '(height . 34)) + ;; ;; Prevent the visual selection overriding the system clipboard (fset 'evil-visual-update-x-selection 'ignore) ;; Prevent transferring data to clipboard manager when exiting |