2019-07-21 15:24:46 +00:00
|
|
|
;;; packages.el --- conlanging layer packages file for Spacemacs.
|
|
|
|
;;
|
|
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
|
|
;;
|
|
|
|
;; Author: Lucien Cartier-Tilet <phundrak@phundrak.fr>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
|
|
(spacemacs/declare-prefix "ol" "conlanging")
|
|
|
|
(spacemacs/declare-prefix "olh" "Hjelp")
|
|
|
|
(spacemacs/declare-prefix "olho" "hjelp.org")
|
|
|
|
(spacemacs/declare-prefix "olm" "Mattér")
|
|
|
|
(spacemacs/declare-prefix "olmo" "matter.org")
|
|
|
|
(spacemacs/declare-prefix "ole" "Einnlanda")
|
2019-08-21 12:57:03 +00:00
|
|
|
(spacemacs/declare-prefix "oleo" "eittlanda.org")
|
2019-09-27 14:42:44 +00:00
|
|
|
(spacemacs/declare-prefix "oln" "Ñyqy")
|
2019-07-21 15:24:46 +00:00
|
|
|
(spacemacs/declare-prefix "olno" "nyqy.org")
|
2019-09-27 14:42:06 +00:00
|
|
|
(spacemacs/declare-prefix "olne" "nyqy.org (English)")
|
2019-09-13 16:38:44 +00:00
|
|
|
(spacemacs/declare-prefix "olo" "Conlang directory")
|
2019-07-21 15:24:46 +00:00
|
|
|
(spacemacs/declare-prefix "olt" "Tãso")
|
|
|
|
(spacemacs/declare-prefix "olto" "taso.org")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'org-mode "ml" "conlanging")
|
2019-08-21 12:57:03 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'org-mode "mle" "Eittlanda")
|
2019-07-21 15:24:46 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'org-mode "mlm" "Mattér")
|
|
|
|
|
|
|
|
(spacemacs/set-leader-keys
|
2019-09-13 16:38:44 +00:00
|
|
|
"oleo" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(find-file "~/Documents/conlanging/eittlanda.org"))
|
2019-07-21 15:24:46 +00:00
|
|
|
"olho" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(find-file "~/Documents/conlanging/hjelp.org"))
|
2019-07-21 15:24:46 +00:00
|
|
|
"olmo" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(find-file "~/Documents/conlanging/matter.org"))
|
2019-07-21 15:24:46 +00:00
|
|
|
"olno" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(find-file "~/Documents/conlanging/nyqy.org"))
|
2019-09-27 14:42:06 +00:00
|
|
|
"olne" (lambda () (interactive)
|
|
|
|
(find-file "~/Documents/conlanging/en/nyqy.org"))
|
2019-09-13 16:38:44 +00:00
|
|
|
"olo" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(dired "~/Documents/conlanging"))
|
2019-07-21 15:24:46 +00:00
|
|
|
"olto" (lambda () (interactive)
|
2019-09-16 13:30:28 +00:00
|
|
|
(find-file "~/Documents/conlanging/taso.org")))
|
2019-07-21 15:24:46 +00:00
|
|
|
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'org-mode
|
2019-09-16 13:46:41 +00:00
|
|
|
"ler" 'conlanging/eittlanda-to-runes
|
|
|
|
"lel" 'conlanging/eittlanda-to-latex
|
2019-07-21 15:24:46 +00:00
|
|
|
"lmr" 'conlanging/matter-to-runes
|
|
|
|
"lml" 'conlanging/matter-to-native-latin
|
2019-09-16 13:46:41 +00:00
|
|
|
"lmL" 'conlanging/matter-to-latex)
|
2019-07-21 15:24:46 +00:00
|
|
|
|
|
|
|
;;; keybindings.el ends here
|