Skip to content

Commit

Permalink
Add winner mode. Stop IDO annoyances.
Browse files Browse the repository at this point in the history
  • Loading branch information
knaveofdiamonds committed Sep 9, 2010
1 parent 0a3b0ee commit c0de84b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions custom/roland-configuration.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))

;; Allow you to undo/redo window configuration
(when (fboundp 'winner-mode) (winner-mode 1))

;; Colours
(set-background-color "black")
(set-foreground-color "#eeeeee")
Expand All @@ -21,9 +24,8 @@
(ido-mode t)
(setq ido-enable-prefix nil
ido-use-filename-at-point -1
ido-enable-flex-matching t
ido-enable-flex-matching -1
ido-create-new-buffer 'always
ido-use-filename-at-point 'guess
ido-max-prospects 10)

;; CSS Mode
Expand All @@ -46,6 +48,9 @@
(setq backup-directory-alist `(("." . ,(expand-file-name
(concat dotfiles-dir "backups")))))

;; Die TRAMP, DIEE!!!!
(setq tramp-mode -1)

;; Mac-specific configuration

(when (eq system-type 'darwin)
Expand All @@ -62,4 +67,4 @@
)


(provide 'roland-configuration)
(provide 'roland-configuration)

0 comments on commit c0de84b

Please sign in to comment.