-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbindings.el
15 lines (14 loc) · 1002 Bytes
/
bindings.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; ~/.doom.d/bindings.el -*- lexical-binding: t; -*-
(map! :leader
:desc "Open config.org" :n "f k" #'org-open-config-file
:desc "Ace window" :n "w a" #'ace-window
(:prefix ("k" . "Grab Bag")
:desc "Export pdf" :n "e" #'org-latex-export-to-pdf
:desc "File from Deft dir" :n "d" #'deft-find-file
:desc "New empty ORG buffer" :n "g" #'evil-buffer-org-new
:desc "Paste as a subtree heading" :n "o" #'org-paste-subtree
:desc "Paste from clipboard" :n "p" #'clipboard-yank
:desc "Ranger in emacs" :n "r" #'ranger
:desc "Insert today's date" :n "t" #'today
:desc "Copy region into kill ring" :n "c" #'copy-region-as-kill
:desc "Evaluate buffer and reload fonts" :n "v" #'evig))