diff options
author | Adrian Kummerlaender | 2014-12-05 21:46:18 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2014-12-05 21:46:18 +0100 |
commit | f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a (patch) | |
tree | 7b73861098d4e4b45392c713d93e726b9a2af859 | |
parent | 3a273072c8a73c29fb9b661ed8a13c600576414f (diff) | |
download | dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar.gz dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar.bz2 dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar.lz dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar.xz dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.tar.zst dotfiles-f1ca49e425bc1a819df0dc3ffc1c41cc804f7c8a.zip |
Enabled `evil-tabs` and removed UI from CLI
* i.e. menu is now not displayed in both CLI and GUI
* disabled startup message
-rw-r--r-- | emacs/.emacs.d/init.el | 10 |
1 files 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) |