aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-01-31 19:55:04 -0800
committercolin <colin@cicadas.surf>2024-01-31 19:55:04 -0800
commit070a0dc88d990fed0ca56efe18d852709e0533af (patch)
tree4d77325e52defa41e3c8381557242f472f6f5e0a
parentad7ae035d928024368699aa9aef55a4083d4c28f (diff)
hurmph
-rw-r--r--init-el.org31
1 files changed, 21 insertions, 10 deletions
diff --git a/init-el.org b/init-el.org
index cce3742..da2c2e3 100644
--- a/init-el.org
+++ b/init-el.org
@@ -88,7 +88,7 @@ I'm using melpa and elpa package archives.
'("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
-(package-refresh-contents)
+;(package-refresh-contents)
(package-install 'use-package)
#+end_src
@@ -378,7 +378,7 @@ First, update the config
*** desktop entry
Second, make an org-protocol desktop entry
-#+begin_src config :tangle ~/.local/share/applications/org-protocol.desktop :results none
+#+begin_src conf :tangle ~/.local/share/applications/org-protocol.desktop :results none
[Desktop Entry]
Name=org-protocol
@@ -387,7 +387,7 @@ Categories=Other;
Keywords=org-protocol;
Icon=emacs
Type=Application
-Exec=emacsclient -- %u
+Exec=emacsclient -n %u
Terminal=false
StartupWMClass=Emacs
MimeType=x-scheme-handler/org-protocol;
@@ -435,7 +435,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-18")
+ '(font . "Comic Mono-12")
;'(font . "Victor Mono-10") ;; uhh
)
@@ -643,7 +643,7 @@ e.g. here's one for org capture
(package-install 'autothemer) ;; for custom themes
(setq my-installed-themes
- '(yoshi-theme leuven-theme seoul256-theme warm-night-theme nimbus-theme doom-themes))
+ '(yoshi-theme nimbus-theme flexoki-themes poet-theme))
(dolist (package my-installed-themes)
@@ -747,8 +747,10 @@ LOAD-THEME"
#+begin_src elisp :noweb no-export :results none
(setq *coding-themes*
- (append '(leuven seoul256 yoshi nimbus warm-night)
- (themes-in-package 'doom)))
+ (append ;'( leuven yoshi nimbus )
+ (themes-in-package 'flexoki-themes)
+ ;(themes-in-package 'doom)
+ ))
(setq *writing-themes*
(themes-in-package 'poet))
@@ -1020,7 +1022,6 @@ imenu-list displayes imenu results in a a navigable table-of-contents tree-like
'(
("https://www.n16f.net/blog/index.xml" blog programming emacs lisp)
("https://deprogrammaticaipsum.com/rss" programming blog)
- ("https://www.okdoomer.io/latest/rss" blog rant sus)
("https://abuseofnotation.github.io/feed" blog philosophy programming)
("https://whhone.com/index.xml" blog emacs)
("https://feedly.com/i/subscription/feed/https://www.cold-takes.com/rss/" blog )
@@ -1731,7 +1732,7 @@ emacs loads at startup.
<<native-comp>>
<<packages-setup-config>>
-
+(message "Preamble and Setup Loaded")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; LEADER KEY DEFINITION AND TOPLEVEL MENUS ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1744,6 +1745,7 @@ emacs loads at startup.
<<my-leader-special-edit>>
<<my-special-inserts>>
+(message "Leader Key Setup Loaded")
;;;;;;;;;;;;;;;;;;;;;;
;; ORG-MODE CONFIGS ;;
;;;;;;;;;;;;;;;;;;;;;;
@@ -1753,6 +1755,8 @@ emacs loads at startup.
<<org-protocol-config>>
<<org-bells-and-wistles>>
+(message "Org-Mode Config Loaded ")
+
;;;;;;;;
;; UI ;;
;;;;;;;;
@@ -1774,6 +1778,7 @@ emacs loads at startup.
<<ui-org-mode-tweaks>>
<<ui-fonts>>
+(message "UI Config Loaded")
;;;;;;;;;;;;;;;;;;;;;
;; TIME MANAGEMENT ;;
;;;;;;;;;;;;;;;;;;;;;
@@ -1785,13 +1790,15 @@ emacs loads at startup.
<<org-capture-config>>
<<org-agenda-config>>
+(message "Time Management Config Loaded")
+
;;;;;;;;;;;;;;;;;;;;;;;;;
;; COMMUNICATION TOOLS ;;
;;;;;;;;;;;;;;;;;;;;;;;;;
<<erc-config>>
-
+(message "Communication tools Config Loaded")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; READING, WRITING, AND NOTETAKING ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1809,6 +1816,8 @@ emacs loads at startup.
<<eww-config>>
<<markdown-editing>>
+(message "Reading and Writing Config Loaded")
+
;;;;;;;;;;;;;;;;;;
;; SOFTWARE DEV ;;
;;;;;;;;;;;;;;;;;;
@@ -1835,6 +1844,7 @@ emacs loads at startup.
<<haxe-config>>
+(message "Software Dev Config Loaded")
;;;;;;;;;;;;;;;;;;;;;;
;; TOOLS AND UTILS ;;
;;;;;;;;;;;;;;;;;;;;;;
@@ -1842,4 +1852,5 @@ emacs loads at startup.
<<buffer-export-config>>
<<helpful>>
+(message "Tools and Utils Config Loaded")
#+end_src