Compare commits

...

3 Commits

Author SHA1 Message Date
420bd45c34
docs(emacs/org): add org-mode keybinds for conlanging.el
All checks were successful
deploy / build (push) Successful in 5m40s
2024-09-21 12:15:55 +02:00
bdbe74c5e7
docs(emacs): add ron-mode 2024-09-21 12:15:37 +02:00
f61b58f9c7
chore: switch from yarn to npm, update dependencies 2024-09-21 12:15:07 +02:00
6 changed files with 4937 additions and 3254 deletions

View File

@ -14,12 +14,12 @@ jobs:
version: 29.1 version: 29.1
- name: "Export org to md" - name: "Export org to md"
run: emacs -Q --script export.el run: emacs -Q --script export.el
- uses: actions/setup-node@v3 - uses: actions/setup-node@v4
with: with:
node-version: 18.x node-version: 20.x
- run: corepack enable - run: corepack enable
- run: yarn install --frozen-lockfile - run: npm ci
- run: yarn build - run: npm run build
- name: "Deploy to remote server" - name: "Deploy to remote server"
uses: appleboy/scp-action@v0.1.4 uses: appleboy/scp-action@v0.1.4
with: with:

View File

@ -832,28 +832,32 @@ can schedule a todo header for some dates, or set a deadline.
Lets now define some keybinds for inserting stuff in our org buffer: Lets now define some keybinds for inserting stuff in our org buffer:
#+name: org-keybinds-insert #+name: org-keybinds-insert
| Key chord | Function | Description | | Key chord | Function | Description | Package |
|-----------+-------------------------------+-------------| |-----------+---------------------------------------------------+-------------+------------|
| i | nil | insert | | i | nil | insert | |
| ib | org-insert-structure-template | | | ib | org-insert-structure-template | | |
| id | org-insert-drawer | | | ic | | conlanging | |
| ie | nil | emphasis | | ica | conlanging-eittlandic-insert-adjective-declension | adjective | conlanging |
| ieb | org-emphasize-bold | | | icn | conlanging-eittlandic-insert-noun-declensions | noun | conlanging |
| iec | org-emphasize-code | | | icv | conlanging-eittlandic-insert-verb-declension | verb | conlanging |
| iei | org-emphasize-italic | | | id | org-insert-drawer | | |
| ies | org-emphasize-strike-through | | | ie | nil | emphasis | |
| ieu | org-emphasize-underline | | | ieb | org-emphasize-bold | | |
| iev | org-emphasize-verbatim | | | iec | org-emphasize-code | | |
| iE | org-set-effort | | | iei | org-emphasize-italic | | |
| if | org-footnote-new | | | ies | org-emphasize-strike-through | | |
| ih | org-insert-heading | | | ieu | org-emphasize-underline | | |
| iH | counsel-org-link | | | iev | org-emphasize-verbatim | | |
| ii | org-insert-item | | | iE | org-set-effort | | |
| il | org-insert-link | | | if | org-footnote-new | | |
| in | org-add-note | | | ih | org-insert-heading | | |
| ip | org-set-property | | | iH | counsel-org-link | | |
| is | org-insert-subheading | | | ii | org-insert-item | | |
| it | org-set-tags-command | | | il | org-insert-link | | |
| in | org-add-note | | |
| ip | org-set-property | | |
| is | org-insert-subheading | | |
| it | org-set-tags-command | | |
There isnt a lot of stuff I can jump to yet, but theres still some: There isnt a lot of stuff I can jump to yet, but theres still some:
#+name: org-keybinds-jump #+name: org-keybinds-jump

View File

@ -735,6 +735,16 @@ or some I write myself.
org-plantuml-jar-path "~/.local/bin/plantuml.jar")) org-plantuml-jar-path "~/.local/bin/plantuml.jar"))
#+end_src #+end_src
*** Ron files
Rusty Object Notation, or RON for short, is to Rust what Json is to
Javascript. Sometimes, I have to work with such files, which is why I
installed this major mode.
#+begin_src emacs-lisp
(use-package ron-mode
:defer t
:straight (:build t))
#+end_src
*** Shells *** Shells
Aside from Eshell, my main shell on my machine is fish (see my [[file:fish.org][fish Aside from Eshell, my main shell on my machine is fish (see my [[file:fish.org][fish
config]]), therefore I need a mode for it. config]]), therefore I need a mode for it.

4883
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,21 +3,26 @@
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://labs.phundrak.com/phundrak/conlang.phundrak.com" "url": "https://labs.phundrak.com/phundrak/conlang.phundrak.com"
}, },
"author": "Lucien Cartier-Tilet <lucien@phundrak.com>", "author": "Lucien Cartier-Tilet <lucien@phundrak.com>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"private": true,
"devDependencies": { "devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.2", "@vuepress/bundler-vite": "2.0.0-rc.14",
"@vuepress/theme-default": "^2.0.0-rc.2", "@vuepress/plugin-umami-analytics": "2.0.0-rc.41",
"vuepress": "2.0.0-rc.2", "@vuepress/theme-default": "2.0.0-rc.41",
"vuepress-plugin-search-pro": "^2.0.0-rc.16" "vuepress": "2.0.0-rc.14",
"vuepress-plugin-search-pro": "2.0.0-rc.52"
}, },
"packageManager": "yarn@4.1.1" "dependencies": {
"less": "^4.2.0",
"nord": "^0.2.1"
},
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
}
} }

3219
yarn.lock

File diff suppressed because it is too large Load Diff