Dropboxでhowmのメモを共有する.emacs
2009/11/5 | Posted in tips
howmで作られるメモをDropboxで共有するには,.emacs.elに
(setq howm-directory "~/Dropbox/memo/howm/")を書きます.
ディレクトリは適宜書き換えてください.
Tags: emacs
Subcribe via RSS
howmで作られるメモをDropboxで共有するには,.emacs.elに
(setq howm-directory "~/Dropbox/memo/howm/")を書きます.
Macの新しいマウス(Magic Mouse )を導入してから,emacsを使うときにスクロールしすぎてしまうので,それを止めるための設定をした.
参考にしたのは
マウスのホイールスクロールを加速させたくない – Ni chicha, ni limona -平均から抜けられない僕-
.emacs.elに以下を追加します.
(defun scroll-down-with-lines () "" (interactive) (scroll-down 3)) (defun scroll-up-with-lines () "" (interactive) (scroll-up 3)) (global-set-key [wheel-up] 'scroll-down-with-lines) (global-set-key [wheel-down] 'scroll-up-with-lines) (global-set-key [double-wheel-up] 'scroll-down-with-lines) (global-set-key [double-wheel-down] 'scroll-up-with-lines) (global-set-key [triple-wheel-up] 'scroll-down-with-lines) (global-set-key [triple-wheel-down] 'scroll-up-with-lines)