about summary refs log tree commit diff
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-08-29 11:59:53 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-08-29 12:00:49 +0700
commit6e9ef6328cf834e1c8e60e0d99fa29af4c727915 (patch)
tree95c3ce817369f24e30052fee01fc6b135635ffd6 /emacs/.emacs.d
parentae407723121f9c45b18ceedd60c48e42e7b09ce7 (diff)
downloaddotfiles-6e9ef6328cf834e1c8e60e0d99fa29af4c727915.tar.gz
Update 2018-08-29
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/init.el4
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))