(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?
'("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)
+