Skip to content

Commit

Permalink
Add customizations for dired-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jimeh committed Dec 11, 2012
1 parent d95d1bf commit 1d07205
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions mode-customizations.el
Expand Up @@ -6,6 +6,7 @@
(load-file (config-path "mode-customizations/coffee-mode.el"))
(load-file (config-path "mode-customizations/conf-mode.el"))
(load-file (config-path "mode-customizations/css-mode.el"))
(load-file (config-path "mode-customizations/dired-mode.el"))
(load-file (config-path "mode-customizations/emacs-lisp-mode.el"))
(load-file (config-path "mode-customizations/erlang-mode.el"))
(load-file (config-path "mode-customizations/feature-mode.el"))
Expand Down
6 changes: 6 additions & 0 deletions mode-customizations/dired-mode.el
@@ -0,0 +1,6 @@
(defun customizations-for-dired-mode ()
(interactive)
(define-key dired-mode-map (kbd "c") 'dired-create-directory)
)

(add-hook 'dired-mode-hook 'customizations-for-dired-mode)

0 comments on commit 1d07205

Please sign in to comment.