about summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-07-06 11:57:09 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-07-06 11:57:09 +0700
commitcfcfd009507d284b1968d981c070df0f9875bd3e (patch)
tree4c4476b62dc458bbcaeeda49a9dadb451192aebf /emacs
parent9b0fd719c3f842e12bbe0bb926b8532bfc61d2d1 (diff)
downloaddotfiles-cfcfd009507d284b1968d981c070df0f9875bd3e.tar.gz
Update 2018-07-06
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index cf6169d..fd270d5 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -14,6 +14,7 @@
    ["#2e3436" "#a40000" "#4e9a06" "#c4a000"
     "#204a87" "#5c3566" "#729fcf" "#eeeeec"])
  '(column-number-mode t)
+ '(cua-mode t nil (cua-base))
  '(custom-enabled-themes (quote (tango)))
  '(scroll-bar-mode nil)
  '(show-paren-mode t)
@@ -25,27 +26,26 @@
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
- '(default ((t (:family "Space Mono"
-                        :foundry "CF  "
-                        :slant normal
-                        :weight normal
-                        :height 98
-                        :width normal))))
+ '(default ((t (:family "Latin Modern Mono" :foundry "UKWN"
+                :slant normal :weight normal :height 120 :width normal))))
  '(whitespace-space ((t (:foreground "gray")))))
 
 (cua-mode)
 (setq-default inhibit-splash-screen t)
 (setq-default fill-column 80)
 (add-hook 'prog-mode-hook 'ruler-mode)
+(setq-default indent-tabs-mode nil)
+(add-hook 'find-file-hook 'whitespace-mode)
+
 (add-hook 'scheme-mode-hook
           (lambda ()
             (require 'geiser)
+            (setq-default geiser-active-implementations '(guile racket))
             (setq-default geiser-repl-use-other-window nil)
             (setq-default geiser-repl-query-on-kill-p nil)))
 (add-hook 'python-mode-hook
           (lambda ()
             (setq fill-column 79)
             (setq comment-fill-column 72)))
-
-(setq-default indent-tabs-mode nil)
-(add-hook 'find-file-hook 'whitespace-mode)
+; The SBCL binary and command-line arguments
+(setq inferior-lisp-program "/usr/local/bin/sbcl --noinform")