aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-10-15 06:47:08 -0700
committercolin <colin@cicadas.surf>2023-10-15 06:47:08 -0700
commit1240be180ca4dcbe317d541bbc9dcca56aa2359d (patch)
tree209d1324783b0a9c3e36083cbaaac508ee549b05
parenta8aae643854eb7ceb0ce5e12c9528c8c67c31684 (diff)
twiddlin
-rw-r--r--init-el.org58
1 files changed, 44 insertions, 14 deletions
diff --git a/init-el.org b/init-el.org
index 3d9aa8d..c40f4da 100644
--- a/init-el.org
+++ b/init-el.org
@@ -14,6 +14,16 @@
configuration options depend on properly configured packages, the
packages are setup first. After that, the order of the setup
operations is more or less insignificant.
+
+ See the end of this file for the elisp block that tangles out to
+ init.el. Here is a preamble that ends up at the top of init.el
+
+#+name: preamble
+#+begin_src elisp :noweb no-export
+
+
+
+#+end_src
#+begin_src elisp :tangle ~/.emacs.d/init.el :noweb no-export :results none
;;;; init.el
@@ -49,7 +59,8 @@
#+end_src
** Native Compilation
-New in emacs 28, native compilation can be enabled:
+New in emacs 28, native compilation can be enabled. I have attempted
+to disable it.
#+name: native-comp
#+begin_src elisp :results none
@@ -66,6 +77,8 @@ New in emacs 28, native compilation can be enabled:
** Packages Setup Config
+I'm using melpa and elpa package archives.
+
#+name: packages-setup-config
#+begin_src elisp :results none
;; PACKAGES SETUP
@@ -166,7 +179,8 @@ New in emacs 28, native compilation can be enabled:
(?p "[p]rojectile" my-projectile-command)
(?m "[m]ajor mode" my-major-mode-command)
(?f "[f]ind file" find-file)
- (?d "[d]irvish" dirvish)
+ (?d "[d]ired" dired)
+ ;(?d "[d]irvish" dirvish)
(?r "[r]eading menu" my-reading-command)
(?s "[s]lime selection" my-lisp-switch-command)
(?h "[h]elp" helpful-at-point)))
@@ -501,7 +515,7 @@ e.g. here's one for org capture
#+name: ui-fonts
#+begin_src elisp :noweb no-export
(add-to-list 'default-frame-alist
- '(font . "Comic Mono-17")
+ '(font . "Comic Mono-12")
;'(font . "Victor Mono-10")
)
@@ -687,7 +701,6 @@ e.g. here's one for org capture
#+begin_src elisp :noweb no-export :results none
<<ui-themes-installed>>
<<ui-themes-theme-switcher>>
-<<halloweenie>>
#+end_src
*** Installed Themes
@@ -700,6 +713,23 @@ e.g. here's one for org capture
(setq my-installed-themes
'(yoshi-theme
kaolin-themes
+ panda-theme
+ foggy-night-theme
+ wildcharm-theme
+ adwaita-dark-theme
+ haki-theme
+ timu-caribbean-theme
+ tao-theme
+ ayu-theme
+ humanoid-themes
+ shanty-themes
+ farmhouse-themes
+ undersea-theme
+ tangotango-theme
+ morgentau-theme
+ cyberpunk-theme
+ enlightened-theme
+ one-themes
seoul256-theme
dracula-theme
solarized-theme
@@ -744,12 +774,11 @@ LOAD-THEME"
(directory-files package-dir nil suffix))))))
(setq *coding-themes*
- (mapcan 'themes-in-package
- '(majapahit
- seoul256
- yoshi
- solarized
- solo-jazz)))
+ (append '(dracula halloweenie panda foggy-night cyberpunk seoul256 solo-jazz undersea wildcharm yoshi)
+ (mapcan 'themes-in-package
+ '(majapahit
+ tao
+ one))))
(setq *writing-themes*
(themes-in-package 'poet))
@@ -822,10 +851,10 @@ LOAD-THEME"
#+end_src
-*** COMMENT Halloweenie
+*** Halloweenie
+
-#+name: halloweenie
-#+begin_src elisp
+#+begin_src elisp :tangle ~/.emacs.d/halloweenie-theme.el
;; halloweenie - a Halloween emacs color theme.
;; Copyright (C) 2021 Colin Okay
;;
@@ -1214,6 +1243,7 @@ wordnut is a wordnet interface
("https://smbc-comics.com/rss.php" comics)
("https://www.science.org/blogs/pipeline/feed" science news)
("https://existentialcomics.com/rss.xml" comics)
+ ("http://feeds.feedburner.com/OddityCentral" weird)
("https://journal.stuffwithstuff.com/rss.xml" programming blog)
("https://rss.slashdot.org/Slashdot/slashdotMain" tech news)))
@@ -1300,7 +1330,7 @@ wordnut is a wordnet interface
#+name: eww-config
#+begin_src elisp :noweb no-export :results none
-(setq browse-url-browser-function 'eww-browse-url)
+(setq browse-url-browser-function 'browse-url-firefox );'eww-browse-url)
;; (add-hook 'eww-mode-hook
;; (lambda ()