spacemacs/config/config-navigation.el

14 lines
465 B
EmacsLisp
Raw Normal View History

(ido-mode t)
(setq ido-enable-flex-matching t) ;; enable fuzzy matching
;; Auto refresh buffers
(global-auto-revert-mode 1)
;; Also auto refresh dired, but be quiet about it
(setq global-auto-revert-non-file-buffers t)
(setq auto-revert-verbose nil)
2013-06-02 01:57:28 +00:00
;; activate winner mode use to undo and redo windows layout
2013-06-02 05:46:48 +00:00
(winner-mode t)
;; no beep pleeeeeease ! (and no visual blinking too please)
(custom-set-variables '(ring-bell-function 'ignore))
(setq visible-bell nil)