diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-08-29 11:59:53 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-08-29 12:00:49 +0700 |
commit | 6e9ef6328cf834e1c8e60e0d99fa29af4c727915 (patch) | |
tree | 95c3ce817369f24e30052fee01fc6b135635ffd6 /emacs | |
parent | ae407723121f9c45b18ceedd60c48e42e7b09ce7 (diff) | |
download | dotfiles-6e9ef6328cf834e1c8e60e0d99fa29af4c727915.tar.gz |
Update 2018-08-29
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index fd270d5..fa93993 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -2,6 +2,8 @@ ;; installed packages. Don't delete this line. If you don't want it, ;; just comment it out by adding a semicolon to the start of the line. ;; You may delete these explanatory comments. +(require 'package) +(add-to-list 'package-archives (cons "melpa" "https://melpa.org/packages/") t) (package-initialize) (pdf-tools-install) @@ -16,6 +18,7 @@ '(column-number-mode t) '(cua-mode t nil (cua-base)) '(custom-enabled-themes (quote (tango))) + '(package-selected-packages (quote (geiser slime pdf-tools))) '(scroll-bar-mode nil) '(show-paren-mode t) '(tool-bar-mode nil) @@ -49,3 +52,4 @@ (setq comment-fill-column 72))) ; The SBCL binary and command-line arguments (setq inferior-lisp-program "/usr/local/bin/sbcl --noinform") +(when window-system (set-frame-size (selected-frame) 80 25)) |