]> git.rkrishnan.org Git - .emacs.d.git/commitdiff
ido mode and a bunch of other small niceties
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 23 Dec 2014 17:17:57 +0000 (22:47 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 23 Dec 2014 17:17:57 +0000 (22:47 +0530)
init.el

diff --git a/init.el b/init.el
index 9f0ad8b5cd58c2881f7d46b0bdf0130fba64dea2..7a55c5ed92a97115d3962ae4a10d0cbf40c1b933 100644 (file)
--- a/init.el
+++ b/init.el
@@ -16,7 +16,7 @@
 (setq visible-bell t)
 
 ;; This is bound to f11 in Emacs 24.4
-;; (toggle-frame-fullscreen) 
+;; (toggle-frame-fullscreen)
 (custom-set-variables
  '(initial-frame-alist (quote ((fullscreen . maximized)))))
 ;; Who use the bar to scroll?
@@ -35,7 +35,7 @@
              '("marmalade" . "http://marmalade-repo.org/packages/") t)
 (package-initialize)
 
-; fetch the list of packages available 
+; fetch the list of packages available
 (unless package-archive-contents
   (package-refresh-contents))
 
 (autoload 'ghc-init "ghc" nil t)
 (autoload 'ghc-debug "ghc" nil t)
 (add-hook 'haskell-mode-hook (lambda () (ghc-init)))
-  
+
+;; ido
+(setq ido-enable-flex-matching t)
+(setq ido-everywhere t)
+(ido-mode 1)
+
+;; disable tabs for indentation
+(setq-default indent-tabs-mode nil)
+
+(require 'whitespace)
+(setq whitespace-style '(face lines-tail))
+(setq whitespace-line-column 80)
+(global-whitespace-mode t)
+
+;; show trailing whitespaces
+(setq-default show-trailing-whitespace t)
+(setq-default indicate-empty-lines t)
+