From f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 5 Dec 2014 21:46:18 +0100 Subject: Enabled `evil-tabs` and removed UI from CLI * i.e. menu is now not displayed in both CLI and GUI * disabled startup message --- emacs/.emacs.d/init.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 18b9874..35f7ac9 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -10,15 +10,15 @@ (require 'evil) (evil-mode 1) +(global-evil-tabs-mode t) +(setq inhibit-startup-message t) (load-theme 'molokai t) (set-frame-font "Source Code Pro-9") -(if window-system - (progn - (menu-bar-mode -1) - (tool-bar-mode -1) - (scroll-bar-mode -1))) +(menu-bar-mode -1) +(tool-bar-mode -1) +(scroll-bar-mode -1) (global-hl-line-mode 1) (setq-default tab-width 4) -- cgit v1.2.3