;; This is where I put most of my emacs-related files
(setq ff/emacs-dir "~/private/emacs")
+(unless (file-exists-p ff/emacs-dir)
+ (mkdir ff/emacs-dir t))
;; Give the focus to the emacs window if we are under a windowing
;; system
;; Activate the dynamic completion of buffer names
(iswitchb-mode 1)
-(unless (file-exists-p ff/emacs-dir)
- (mkdir ff/emacs-dir))
-
;; Save the minibuffer history
(setq savehist-file (concat ff/emacs-dir "/savehist"))
(when (functionp 'savehist-mode) (savehist-mode 1))