summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-28 01:56:58 +0100
committerGravatar Tom Willemsen2012-12-28 01:56:58 +0100
commit62ea1086e9ec844c5357bcb86f09333a0ea5638a (patch)
treece9003b6bcf7b839c85f797825b1cd9c2800a4d4 /.emacs.d/init.el
parente20a89885e57297d7772eb23b699f3ec10e0aece (diff)
downloaddotfiles-62ea1086e9ec844c5357bcb86f09333a0ea5638a.tar.gz
dotfiles-62ea1086e9ec844c5357bcb86f09333a0ea5638a.zip
Emacs: Manually set-up w3m
Only `w3m-goto-url' and `w3m-bookmark-view' are ever really used to start w3m, no need to load `w3m-load' for that.
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 061a29b..dd679c9 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -30,7 +30,6 @@
(require 'geiser-install)
(require 'oni)
(require 'uniquify)
-(require 'w3m-load)
(autoload 'define-slime-contrib "slime")
(autoload 'gtags-mode "gtags" nil t)
@@ -42,6 +41,8 @@
(autoload 'server-running-p "server")
(autoload 'slime-js-minor-mode "slime-js" nil t)
(autoload 'xmodmap-mode "xmodmap-mode" nil t)
+(autoload 'w3m-bookmark-view "w3m" nil t)
+(autoload 'w3m-goto-url "w3m" nil t)
(load (expand-file-name "~/.emacs.d/site-lisp/loaddefs.el"))