Compare commits
3 Commits
30892f9ca0
...
420bd45c34
Author | SHA1 | Date | |
---|---|---|---|
420bd45c34 | |||
bdbe74c5e7 | |||
f61b58f9c7 |
@ -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:
|
||||
|
@ -832,28 +832,32 @@ can schedule a todo header for some dates, or set a deadline.
|
||||
|
||||
Let’s 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 isn’t a lot of stuff I can jump to yet, but there’s still some:
|
||||
#+name: org-keybinds-jump
|
||||
|
@ -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
4883
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
package.json
23
package.json
@ -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"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user