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
- name: "Export org to md"
run: emacs -Q --script export.el
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
- run: corepack enable
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npm ci
- run: npm run build
- name: "Deploy to remote server"
uses: appleboy/scp-action@v0.1.4
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:
#+name: org-keybinds-insert
| Key chord | Function | Description |
|-----------+-------------------------------+-------------|
| i | nil | insert |
| ib | org-insert-structure-template | |
| id | org-insert-drawer | |
| ie | nil | emphasis |
| ieb | org-emphasize-bold | |
| iec | org-emphasize-code | |
| iei | org-emphasize-italic | |
| ies | org-emphasize-strike-through | |
| ieu | org-emphasize-underline | |
| iev | org-emphasize-verbatim | |
| iE | org-set-effort | |
| if | org-footnote-new | |
| ih | org-insert-heading | |
| iH | counsel-org-link | |
| ii | org-insert-item | |
| il | org-insert-link | |
| in | org-add-note | |
| ip | org-set-property | |
| is | org-insert-subheading | |
| it | org-set-tags-command | |
| Key chord | Function | Description | Package |
|-----------+---------------------------------------------------+-------------+------------|
| i | nil | insert | |
| ib | org-insert-structure-template | | |
| ic | | conlanging | |
| ica | conlanging-eittlandic-insert-adjective-declension | adjective | conlanging |
| icn | conlanging-eittlandic-insert-noun-declensions | noun | conlanging |
| icv | conlanging-eittlandic-insert-verb-declension | verb | conlanging |
| id | org-insert-drawer | | |
| ie | nil | emphasis | |
| ieb | org-emphasize-bold | | |
| iec | org-emphasize-code | | |
| iei | org-emphasize-italic | | |
| ies | org-emphasize-strike-through | | |
| ieu | org-emphasize-underline | | |
| iev | org-emphasize-verbatim | | |
| iE | org-set-effort | | |
| if | org-footnote-new | | |
| ih | org-insert-heading | | |
| iH | counsel-org-link | | |
| ii | org-insert-item | | |
| 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:
#+name: org-keybinds-jump

View File

@ -735,6 +735,16 @@ or some I write myself.
org-plantuml-jar-path "~/.local/bin/plantuml.jar"))
#+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
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.

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",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://labs.phundrak.com/phundrak/conlang.phundrak.com"
},
"author": "Lucien Cartier-Tilet <lucien@phundrak.com>",
"license": "AGPL-3.0",
"private": true,
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.2",
"@vuepress/theme-default": "^2.0.0-rc.2",
"vuepress": "2.0.0-rc.2",
"vuepress-plugin-search-pro": "^2.0.0-rc.16"
"@vuepress/bundler-vite": "2.0.0-rc.14",
"@vuepress/plugin-umami-analytics": "2.0.0-rc.41",
"@vuepress/theme-default": "2.0.0-rc.41",
"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