Compare commits

..

No commits in common. "420bd45c348344c06eb965a17d5e4e0fdbb3bf3b" and "30892f9ca0cb21c2189d9599c5b67d98a4f30cb3" have entirely different histories.

6 changed files with 3254 additions and 4937 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@v4 - uses: actions/setup-node@v3
with: with:
node-version: 20.x node-version: 18.x
- run: corepack enable - run: corepack enable
- run: npm ci - run: yarn install --frozen-lockfile
- run: npm run build - run: yarn 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,32 +832,28 @@ 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 | Package | | Key chord | Function | Description |
|-----------+---------------------------------------------------+-------------+------------| |-----------+-------------------------------+-------------|
| i | nil | insert | | | i | nil | insert |
| ib | org-insert-structure-template | | | | ib | org-insert-structure-template | |
| ic | | conlanging | | | id | org-insert-drawer | |
| ica | conlanging-eittlandic-insert-adjective-declension | adjective | conlanging | | ie | nil | emphasis |
| icn | conlanging-eittlandic-insert-noun-declensions | noun | conlanging | | ieb | org-emphasize-bold | |
| icv | conlanging-eittlandic-insert-verb-declension | verb | conlanging | | iec | org-emphasize-code | |
| id | org-insert-drawer | | | | iei | org-emphasize-italic | |
| ie | nil | emphasis | | | ies | org-emphasize-strike-through | |
| ieb | org-emphasize-bold | | | | ieu | org-emphasize-underline | |
| iec | org-emphasize-code | | | | iev | org-emphasize-verbatim | |
| iei | org-emphasize-italic | | | | iE | org-set-effort | |
| ies | org-emphasize-strike-through | | | | if | org-footnote-new | |
| ieu | org-emphasize-underline | | | | ih | org-insert-heading | |
| iev | org-emphasize-verbatim | | | | iH | counsel-org-link | |
| iE | org-set-effort | | | | ii | org-insert-item | |
| if | org-footnote-new | | | | il | org-insert-link | |
| ih | org-insert-heading | | | | in | org-add-note | |
| iH | counsel-org-link | | | | ip | org-set-property | |
| ii | org-insert-item | | | | is | org-insert-subheading | |
| il | org-insert-link | | | | it | org-set-tags-command | |
| 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,16 +735,6 @@ 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

File diff suppressed because it is too large Load Diff

View File

@ -3,26 +3,21 @@
"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.14", "@vuepress/bundler-vite": "^2.0.0-rc.2",
"@vuepress/plugin-umami-analytics": "2.0.0-rc.41", "@vuepress/theme-default": "^2.0.0-rc.2",
"@vuepress/theme-default": "2.0.0-rc.41", "vuepress": "2.0.0-rc.2",
"vuepress": "2.0.0-rc.14", "vuepress-plugin-search-pro": "^2.0.0-rc.16"
"vuepress-plugin-search-pro": "2.0.0-rc.52"
}, },
"dependencies": { "packageManager": "yarn@4.1.1"
"less": "^4.2.0",
"nord": "^0.2.1"
},
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
}
} }

3219
yarn.lock Normal file

File diff suppressed because it is too large Load Diff