summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-24 20:04:16 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-24 20:04:16 -0700
commitc37f40bc93d358a11a9674a5c3b1bfef40d49790 (patch)
treebc9ce19b8a1156114689ff6bf5f97c4e4104bc99
parent[emacs] Cleanup go's configuration (diff)
downloademacs.d-c37f40bc93d358a11a9674a5c3b1bfef40d49790.tar.gz
[emacs] simplify the UI.
Use default theme/colors/font.
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 "")