aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-01-21 19:59:18 -0800
committerJakob Odersky <jakob@odersky.com>2017-01-21 19:59:18 -0800
commit0211fba127318b46b197719056aa68bf1149e7a1 (patch)
tree101b9d6fbd24351b0cfa1127ce8797bdae4dcfb3
parentd795c2281f936965a82c3136c9378283f8e7d172 (diff)
downloaddotfiles-0211fba127318b46b197719056aa68bf1149e7a1.tar.gz
dotfiles-0211fba127318b46b197719056aa68bf1149e7a1.tar.bz2
dotfiles-0211fba127318b46b197719056aa68bf1149e7a1.zip
Update emacs config
-rw-r--r--home/.emacs.d/config/lang.el3
-rw-r--r--home/.emacs.d/config/theme.el10
-rw-r--r--home/.emacs.d/init.el4
3 files changed, 11 insertions, 6 deletions
diff --git a/home/.emacs.d/config/lang.el b/home/.emacs.d/config/lang.el
index 8e1ac7b..96319ad 100644
--- a/home/.emacs.d/config/lang.el
+++ b/home/.emacs.d/config/lang.el
@@ -47,7 +47,8 @@
:commands ensime ensime-mode
:init
:config
- (setq ensime-startup-snapshot-notification nil))
+ (setq ensime-startup-notification nil
+ ensime-startup-snapshot-notification nil))
;;; Java
(add-hook 'java-mode-hook (lambda ()
diff --git a/home/.emacs.d/config/theme.el b/home/.emacs.d/config/theme.el
index 6642f1c..df67d4d 100644
--- a/home/.emacs.d/config/theme.el
+++ b/home/.emacs.d/config/theme.el
@@ -1,4 +1,6 @@
-(when (display-graphic-p)
- (progn
- (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/monokai-emacs")
- (load-theme 'monokai t)))
+(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/monokai-emacs")
+(load-theme 'monokai t)
+;(when (display-graphic-p)
+; (progn
+; (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/monokai-emacs")
+; (load-theme 'monokai t)))
diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el
index e8e4c82..d5d8652 100644
--- a/home/.emacs.d/init.el
+++ b/home/.emacs.d/init.el
@@ -21,7 +21,7 @@
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
;; font
-(set-face-attribute 'default nil :height 120); value is in 1/10pt, so 100 will give you 10pt, etc.
+(set-face-attribute 'default nil :height 100); value is in 1/10pt, so 100 will give you 10pt, etc.
;; uniform questions
(defalias 'yes-or-no-p 'y-or-n-p)
@@ -38,6 +38,8 @@
;; Highlight corresponding parentheses when cursor is on one
(show-paren-mode t)
+(setq dired-listing-switches "-alh --group-directories-first")
+
;; Highlight tabulations
;(setq-default highlight-tabs t)