aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)