diff --git a/SwarselSystems.org b/SwarselSystems.org index aaee419..13f4c9d 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -9820,7 +9820,9 @@ I also define some keybinds to some combinations directly. Those are used mostly "ol" '((lambda () (interactive) (org-insert-link)) :which-key "insert link") "os" '((lambda () (interactive) (org-store-link)) :which-key "store link") "od" '((lambda () (interactive) (org-babel-demarcate-block)) :which-key "demarcate (split) src-block") - "on" '((lambda () (interactive) (nixpkgs-fmt-region)) :which-key "format nix-block") + "on" '(nixpkgs-fmt-region :which-key "format nix-block") + "ot" '(swarsel/org-babel-tangle-config :which-key "tangle file") + "oe" '(org-html-export-to-html :which-key "export to html") "c" '(:ignore c :which-key "capture") "ct" '((lambda () (interactive) (org-capture nil "tt")) :which-key "task") ;; "cj" '((lambda () (interactive) (org-capture nil "jj")) :which-key "journal") @@ -9829,7 +9831,7 @@ I also define some keybinds to some combinations directly. Those are used mostly "lc" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (org-overview) )) :which-key "SwarselSystems.org") "le" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (goto-char (org-find-exact-headline-in-buffer "Emacs") ) (org-overview) (org-cycle) )) :which-key "Emacs.org") "ln" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (goto-char (org-find-exact-headline-in-buffer "System") ) (org-overview) (org-cycle))) :which-key "Nixos.org") - "ls" '((lambda () (interactive) (find-file "/smb:Swarsel@192.168.1.3:")) :which-key "Server") + "ls" '((lambda () (interactive) (find-file "/smb:Swarsel@winters:")) :which-key "Server") "lo" '(dired swarsel-obsidian-vault-directory :which-key "obsidian") ;; "la" '((lambda () (interactive) (find-file swarsel-org-anki-filepath)) :which-key "anki") ;; "ln" '((lambda () (interactive) (find-file swarsel-nix-org-filepath)) :which-key "Nix.org") diff --git a/programs/emacs/init.el b/programs/emacs/init.el index 55a69e2..d5f047b 100644 --- a/programs/emacs/init.el +++ b/programs/emacs/init.el @@ -339,7 +339,9 @@ create a new one." "ol" '((lambda () (interactive) (org-insert-link)) :which-key "insert link") "os" '((lambda () (interactive) (org-store-link)) :which-key "store link") "od" '((lambda () (interactive) (org-babel-demarcate-block)) :which-key "demarcate (split) src-block") - "on" '((lambda () (interactive) (nixpkgs-fmt-region)) :which-key "format nix-block") + "on" '(nixpkgs-fmt-region :which-key "format nix-block") + "ot" '(swarsel/org-babel-tangle-config :which-key "tangle file") + "oe" '(org-html-export-to-html :which-key "export to html") "c" '(:ignore c :which-key "capture") "ct" '((lambda () (interactive) (org-capture nil "tt")) :which-key "task") ;; "cj" '((lambda () (interactive) (org-capture nil "jj")) :which-key "journal") @@ -348,7 +350,7 @@ create a new one." "lc" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (org-overview) )) :which-key "SwarselSystems.org") "le" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (goto-char (org-find-exact-headline-in-buffer "Emacs") ) (org-overview) (org-cycle) )) :which-key "Emacs.org") "ln" '((lambda () (interactive) (progn (find-file swarsel-swarsel-org-filepath) (goto-char (org-find-exact-headline-in-buffer "System") ) (org-overview) (org-cycle))) :which-key "Nixos.org") - "ls" '((lambda () (interactive) (find-file "/smb:Swarsel@192.168.1.3:")) :which-key "Server") + "ls" '((lambda () (interactive) (find-file "/smb:Swarsel@winters:")) :which-key "Server") "lo" '(dired swarsel-obsidian-vault-directory :which-key "obsidian") ;; "la" '((lambda () (interactive) (find-file swarsel-org-anki-filepath)) :which-key "anki") ;; "ln" '((lambda () (interactive) (find-file swarsel-nix-org-filepath)) :which-key "Nix.org")