Made an Emacs Binding for Config Quick Edit
I hit F5
, Emacs opens my
config.org
for editing. It
might not be much but it feels good to scratch such a specific itch.
Feeling pretty good about myself.
(global-set-key (kbd "<f5>")
(lambda ()
(interactive)
(find-file "~/.dotfiles/config.org")))