File tree Expand file tree Collapse file tree 4 files changed +9
-642
lines changed
Expand file tree Collapse file tree 4 files changed +9
-642
lines changed Original file line number Diff line number Diff line change 9292 (mapc #'load (directory-files user-specific-dir nil " .*el$" )))
9393(if (file-exists-p user-specific-config) (load user-specific-config))
9494
95+ ; ; http://stackoverflow.com/questions/24779041/disable-warning-about-emacs-d-in-load-path
96+ (defadvice display-warning
97+ (around no-warn-.emacs.d-in-load-path (type message &rest unused) activate)
98+ " Ignore the warning about the `.emacs.d' directory being in `load-path' ."
99+ (unless (and (eq type 'initialization )
100+ (string-prefix-p " Your `load-path' seems to contain\n your `.emacs.d' directory"
101+ message t ))
102+ ad-do-it))
103+
95104; ;; init.el ends here
Original file line number Diff line number Diff line change 3535(global-set-key (kbd " <f8>" ) 'follow-delete-other-windows-and-split )
3636(global-set-key (kbd " <M-f8>" ) 'follow-mode-quit )
3737(global-set-key (kbd " <f9>" ) 'open-shell-pane )
38- (global-set-key (kbd " <M-f9>" ) 'sr-speedbar-toggle )
39- (global-set-key (kbd " <C-M-f9>" ) 'speedbar-refresh )
4038(global-set-key (kbd " <f11>" ) 'toggle-fullscreen )
4139(global-set-key (kbd " <M-f11>" ) 'darkroom-mode )
4240(global-set-key (kbd " <f12>" ) 'call-last-kbd-macro )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments