aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init-el.org24
1 files changed, 18 insertions, 6 deletions
diff --git a/init-el.org b/init-el.org
index 987c24e..d7a96bd 100644
--- a/init-el.org
+++ b/init-el.org
@@ -665,11 +665,11 @@ LOAD-THEME"
poet-theme
silkworm-theme
flexoki-themes
- dracula-theme
+ distinguished-theme
naga-theme
grandshell-theme
faff-theme
- morgentau-theme
+ doom-themes
base16-theme
))
@@ -689,17 +689,19 @@ LOAD-THEME"
(setq *coding-themes*
'(
;; light
+ unspecified
leuven
flexoki-themes-light
faff
;; medium
base16-catppuccin-frappe
base16-silk-dark
- dracula
;; dark
base16-chalk
+ doom-dark+
grandshell
- naga))
+ naga
+ distinguished))
(setq *writing-themes*
@@ -881,7 +883,7 @@ imenu-list displayes imenu results in a a navigable table-of-contents tree-like
(require 'calibredb)
(setq calibredb-root-dir "~/Calibre")
(setq calibredb-db-dir (expand-file-name "metadata.db" calibredb-root-dir))
-
+(setq calibredb-search-page-max-rows 10000)
#+end_src
@@ -1216,6 +1218,7 @@ code in emacs org blocks.
#+name: software-dev-essentials
#+begin_src elisp :noweb no-export :results none
+
(package-install 'company)
(package-install 'magit)
(require 'company)
@@ -1437,6 +1440,15 @@ association one shell with each perspective layout
#+RESULTS: coalton
: insert-coalton-defpackage
+** WASM
+
+#+name: wasm-dev
+#+begin_src elisp :noweb no-export
+(add-to-list 'load-path (concat (getenv "HOME") "/.emacs.d/manual-packages/wat-mode/"))
+(require 'wat-mode)
+#+end_src
+
+
** Haxe
In order to use ~battle-haxe-mode~, you must put an ~.hxml~ file into
@@ -1473,7 +1485,7 @@ libraries should be available
: ‘haxe-mode’ is already installed
-** Python
+** COMMENT Python
#+name: python-config
#+begin_src elisp :noweb no-export :results none