summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/init.el10
1 files changed, 2 insertions, 8 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 458025d..75e87c4 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -62,11 +62,8 @@
 ;; turn off indent tabs
 (setq-default indent-tabs-mode nil)
 
-;; nice font
-(set-face-attribute 'default nil :font "DejaVu Sans Mono" :height 150)
-(set-background-color "#FFFFE5")
-(set-face-attribute 'fringe nil :background "#FFFFE5")
-(set-face-background 'mode-line "#E6FFFF")
+;; highlight current line
+(global-hl-line-mode 1)
 
 ;; no menu
 (menu-bar-mode -1)
@@ -74,9 +71,6 @@
 ;; show parenthesis
 (show-paren-mode +1)
 
-;; disable colors
-(global-font-lock-mode -1)
-
 ;; no startup screen
 (setq inhibit-startup-message t)
 (setq initial-scratch-message "")