aboutsummaryrefslogtreecommitdiff
path: root/init-el.org
blob: b9ad35f4829987638fe18cb5e4b4c90397746d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
-*- buffer-read-only: t -*-
#+auto_tangle: t
#+PROPERTY: header-args:elisp+ :tangle ~/.emacs.d/init.el
#+PROPERTY: header-args:elisp+ :results none
#+PROPERTY: header-args:elisp+ :lexical t
#+PROPERTY: header-args:elisp+ :noweb-sep "\n\n"
#+OPTIONS: html-style:nil
* init.el 

  This section generates the init.el file in the .emacs.d
  directory. Emacs reads this file on startup.

  Because init.el is generated afresh whenever =org-babel-tangle= is
  called, and because the default behavior of emacs is to
  programmatically place customizations at the end of the init.el
  file, it is prudent to set a =custom-file= location explicitly.  

  After setting custom file, emacs is configured.  Because many other
  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

  This preamble sets a few variables that control how Emacs behaves
  more generally.

#+name: preamble
#+begin_src elisp :noweb no-export
;;; PREAMBLE
(setq custom-file (concat user-emacs-directory "../notes/custom.el"))
(load custom-file 'noerror)

(setq backup-directory-alist '(("." . "~/.emacs.d/backups")))
(setq backup-by-copying t)

(setq warning-minimum-level :emergency)

;;; utilities
(defun read-file-into-string (f)
  (with-temp-buffer
    (insert-file-contents f)
    (buffer-string)))

(defun middle-of-list (xs)
  (elt xs (/ (length xs) 2)))


#+end_src

** Native Compilation

New in emacs 28, native compilation can be enabled. I have attempted
to disable it.

#+name: native-comp
#+begin_src elisp :results none

;; Native compilation setup

(when (and (fboundp 'native-comp-available-p)
           (native-comp-available-p))
  (setq package-native-compile nil
        native-comp-always-compile nil))

#+end_src

** Packages Setup Config 

I'm using melpa and elpa package archives. 

#+name: packages-setup-config
#+begin_src elisp  :results none
;; PACKAGES SETUP
(require 'cl)

(defun my-package-install (package  &optional archive dont-select)
  "archive is a string naming the archive. Will attempt" 
  (let* ((pkg-descs
          (cdr (assoc package package-archive-contents)))
         (desc
          (if archive 
              (find archive pkg-descs :test 'equalp :key 'package-desc-archive))))
    (when desc 
      (package-install desc dont-select))))

(require 'package)
(add-to-list 'package-archives
	     '("elpa" . "https://elpa.gnu.org/packages/") t)
(add-to-list 'package-archives
	     '("melpa" . "https://melpa.org/packages/") t)

(package-initialize)
;(package-refresh-contents)

(package-install 'use-package)
#+end_src

* Leader Keys

 I have written a custom leader key system called "my-leader-keys".  A
 leader key system provides keyboard driven menus for executing emacs
 commands a.k.a "interactive functions".  An initial key (=M-m= for
 me) opens the top level menu. The menu presents keys to press that
 either lead to the further menus or that run a specific interactive
 function.

 It all starts with the =def-my-command= macro, which associates a key
 to a menu of commands. Each 'command' is just an interactive function.

** My Leader Keys Definition

  #+name: my-leader-key-system
  #+begin_src elisp :results none
 ;; Leader Keys System

  (setq lexical-binding t)

  (defmacro def-my-command (name forms)
    `(defun ,name (ch)
       (interactive (let ((input (read-char (my-prompt-string ,forms))))
		      (list input)))
       (let ((command (assoc ch ,forms)))
         (when command
	   (call-interactively (caddr command))))))

  ;; a helper function for navigating command menus
  (defun my-prompt-string (&optional forms)
    (concat "Options: "
	    (mapconcat 'identity
		       (mapcar #'cadr
			       (if forms forms *my-leader-command-forms*))
		       ", ")))

  #+end_src

** My Leader Key Toplevel Menu 

 The leader key system wouldn't be much good without a top-level leader
 key. Here the initial leader key menu is defined and bound to M-m.

#+name: my-leader-key-toplevel-menu
#+begin_src elisp  :results none
;; Leader Key Entry Point

(setq imenu-auto-rescan t)

(def-my-command my-leader-command
  '((?/ "[/] swiper" swiper)
    ;(?? "[?] imenu" imenu-list)
    (?? "[?] replace" query-replace)
    (?e "[e]diting" my-special-edit-command) 
    (?' "['] shell" persp-shell--jump-to-persp-shell)
    (?b "[b]uffers" my-buffer-command)
    (?c "[c]apture" org-capture)
    (?a "[a]pplications" my-utilities-command)
    (?t "[t]hemes" my-theme-cycler)
    (?T "[T]heme set" toggle-theme-set)
    (?l "[l]ayouts" my-perspective-command)
    (?w "[w]indows" my-window-comand)
    (?p "[p]roject" my-projectile-command)
    (?m "[m]ajor" my-major-mode-command)
    (?f "[f]ind-file" find-file)
    (?d "[d]ired" dired)
    ;(?d "[d]irvish" dirvish)
    (?r "[r]eading" my-reading-command)
    (?s "[s]ly" sly)
    (?h "[h]elp" helpful-at-point)))


(global-set-key (kbd "M-m") 'my-leader-command)
#+end_src
 
** My leader Key Major Mode Menu 

#+name: my-leader-key-major-mode-menu
#+begin_src elisp  :results none
;; major mode leaader keys

(defvar my-major-mode-list nil "subcommands by major-mode")
(setf my-major-mode-list
      '((org-mode my-org-command)
        (pdf-view-mode my-pdf-view-mod-command)
	(lisp-mode my-lisp-mode-command)))


(defun my-major-mode-command ()
  (interactive)
  (let ((mode-command (assoc major-mode my-major-mode-list)))
    (when mode-command
      (call-interactively (cadr mode-command)))))

#+end_src

** My leader key utilities and applications menu 

#+name: my-leader-key-applications-menu
#+begin_src elisp :results none

(def-my-command my-utilities-command
  '((?o "org clock [o]ut" org-clock-out)
    (?r "org [r]esume last" org-clock-in-last)
    (?c "[c]alendar" cfw:open-org-calendar)
    (?a "[a]genda" org-agenda)
    (?b "[b]ooks" calibredb)
    (?d "[d]eft" toggle-deft)
    (?f "el[f]eed" elfeed)
    (?j "[j]ournal" toggle-journal)
    (?s "[s]ecrets" toggle-secrets) 
    (?p "[p]omodoro" pomidor)
    (?w "[w]eb browser (eww)" eww)
    (?C "[C]RDT" my-crdt-commands)
    (?t "[t]asks" list-cicadas-tasks)))
#+end_src



* Org Mode Configs 

** Org Mode Main Config

#+name: org-mode-main-config
#+begin_src elisp :noweb no-export :results none
;; org mode config

(package-install 'org)
(require 'org)
(setq org-duration-format 'h:mm)

(setq org-edit-src-content-indentation 0)

(setq org-goto-interface 'outline-path-completion
      org-goto-max-level 10
      org-outline-path-complete-in-steps nil)

(setq org-imenu-depth 10)

(setq org-startup-folded t)

(defun my-org-up-heading ()
  (interactive)
  (org-up-heading-safe))

(defun my-org-down-heading ()
  (interactive)
  (org-down-element))

(defun personal-log-insert ()
  (interactive)
  (org-insert-heading)
  (delete-backward-char 1)
  (insert "* ")
  (insert (current-time-string)))

(defun org-insert-internal-link (title)
  (interactive "sHeading: ")
  (insert "[[*")
  (call-interactively 'complete-symbol)
  (insert (format "][%s]]" title)))

(defun org-insert-named-code-block (name lang)
  (interactive "sName: \nsLanguage: ")
  (insert "#+name: ")
  (insert name)
  (insert "\n")
  (insert (format "#+begin_src %s :noweb no-export\n\n#+end_src" lang)))

#+end_src

#+RESULTS: org-mode-main-config

** My-Leader Key for Org Major Mode 
#+name: org-mode-leader-key-menu
#+begin_src elisp :results none :noweb no-export
;; org mode leader keys and related commands
(defun org-src--source-buffer ()
  (marker-buffer org-src--beg-marker))

(defun buffer-read-only-p (buffer)
  "Returns T if BUFFER, which can be a name or a buffer, is read only."
  (buffer-local-value 'buffer-read-only (get-buffer buffer)))

(defvar org-src--read-only-source-buffer-cache nil
  "")

(defun before-org-edit-src-exit (&rest args)
  "If necessary, make the org src buffer's target buffer writable
prior to exiting."
  (let ((target-buffer (org-src--source-buffer)))
    (when (buffer-read-only-p target-buffer)
      (setf org-src--read-only-source-buffer-cache target-buffer)
      (with-current-buffer target-buffer
        (read-only-mode 0)))))

(defun after-org-edit-src-exit (&rest args)
  "If necessary, make the org src buffer's target buffer read-only
again, if it  was whent he org edit src buffer was opened."
  (when org-src--read-only-source-buffer-cache
    (with-current-buffer org-src--read-only-source-buffer-cache
      (read-only-mode 1))
    (setf org-src--read-only-source-buffer-cache nil)))

(advice-add 'org-edit-src-exit
            :before #'before-org-edit-src-exit)

(advice-add 'org-edit-src-exit
            :after #'after-org-edit-src-exit)

(def-my-command my-org-command
  '((?/ "[/] sparse tree" org-sparse-tree)
    (?g "[g]oto" org-goto)
    (?u "[u]p heading" my-org-up-heading)
    (?d "[d]own heading" my-org-down-heading)
    (?p "[p]revious heading" org-previous-visible-heading)
    (?n "[n]next heading" org-next-visible-heading)

    (?r "Org [r]efile" org-refile)
    (?k "Org [k]ut" org-cut-special)
    (?s "Org [s]ort" org-sort)
    (?A "Org [A]rchive" org-archive-subtree)


    (?i "[i]insertion" my-org-insertion-subcommand)
    (?x "e[x]port" my-org-export-subcommand)

    (?e "[e]dit a code block" org-edit-src-code)
        
    (?N "[N]arrow" org-narrow-to-subtree)
    (?W "[W]iden" widen)

    (?I "[I]mages toggle" org-toggle-inline-images)

    (?c "table re[c]alculate" org-table-recalculate)

    (?C "[C]lock" org-clock-in)))

(def-my-command my-org-export-subcommand
  '((?t "[t]angle file" org-babel-tangle)
    (?w "[w]ritefreely" writefreely-publish-or-update)
    (?x "e[x]port options" org-export-dispatch)))

(def-my-command my-org-insertion-subcommand
  '((?l "internal [l]ink" org-insert-internal-link)
    (?L "external [L]ink" org-insert-link)
    (?r "insert d[r]awe[r]" org-insert-drawer)
    (?d "[d]ated log entry" personal-log-insert)
    (?D "[D]eadline" org-deadline)
    (?T "[T]imestamp" org-time-stamp)
    (?f "[f]ootnote" org-footnote-new)
    (?b "named code [b]lock" org-insert-named-code-block)
    (?s "[s]tructure template" org-insert-structure-template)))

#+end_src

* UI 

** Fonts
#+name: ui-fonts
#+begin_src elisp :noweb no-export
;; fonts

(add-to-list 'default-frame-alist
             '(font . "DejaVu Sans Mono-10")
             ;'(font . "Comic Mono-11")
             ;'(font . "Victor Mono-10") ;; uhh
             )


#+end_src

#+RESULTS: ui-fonts
: ((font . Comic Mono-10) (font . Victor Mono-10) (vertical-scroll-bars) (left-fringe . 4) (right-fringe . 0))

** UI Chrome

 I like for my emacs to have as little UI chrome as possible, and to
 have a consistent UI experience. So I disable the blinking cursor, I
 set cursor type to 'box by default, and I disable menu, tool, and
 scroll bars.

 #+name: ui-chrome-config
 #+begin_src elisp :results none
 ;; UI Chrome

 (blink-cursor-mode 0)
 (setq-default cursor-type 'box)
 (menu-bar-mode 0)
 (tool-bar-mode 0)
 (scroll-bar-mode -1)
 (toggle-frame-fullscreen)


 (defun transparency (value)
   "Sets the transparency of the frame window. 0=transparent/100=opaque"
   (interactive (let* ((prompt (concat "Transparency Value 0 - 100 opaque ["
                                       (prin1-to-string (frame-parameter (selected-frame) 'alpha))
                                       "]:"))
                       (input (read-number prompt)))
                  (list input)))
   (set-frame-parameter (selected-frame) 'alpha value))

 #+end_src

** Tweaks 

   Bits and bobs. 

   I globally unset the C-z keybinding because it is easy to hit by
   accident and causes the window to suddenly close.

   In addition, for some programming langauges, tabs should not be used
   to perform indtentation of source code. To ensure that no indentation
   does not, by default, use tabs, I set indent-tabs-mode to nil.

#+name: ui-tweaks-config
#+begin_src elisp :results none
;; global keys

(global-unset-key (kbd "<Scroll_Lock>"))
(global-unset-key "\C-z") 
(setq-default indent-tabs-mode nil) 
;(global-hl-line-mode 1)



#+end_src

** Completions Engine 
   
#+name: ui-completion-engine
#+begin_src elisp :results none
;; command completions 

(package-install 'ivy)
;(package-install 'smex)
(package-install 'amx)
(package-install 'swiper)
(ivy-mode 1)
(setq ivy-use-selectable-prompt t)
(amx-mode)

;(smex-initialize)
;(global-set-key (kbd "M-x") 'smex)

#+end_src
   
** Buffers, Windows, and Perspectives

*** Packages 

#+name: ui-windows-and-perspectives-packages
#+begin_src elisp :results none
(package-install 'perspective)
(setq persp-suppress-no-prefix-key-warning t)
(persp-mode 1)

(package-install 'rotate)

(package-install 'window-numbering)
(window-numbering-mode)

(package-install 'resize-window)
(require 'resize-window)
#+end_src
*** Window Leader Key Menu 

#+name: ui-window-leader-key-menu
#+begin_src elisp :results none


(setq fit-window-to-buffer-horizontally t)

(defun my-fit-window-to-buffer ()
  (interactive)
  (fit-window-to-buffer)
  (resize-window--enlarge-horizontally))

(setq *auto-light-mode* nil)

(defun toggle-auto-light-mode ()
  (interactive)
  (set-frame-parameter
   nil 'screen-gamma
   (if *auto-light-mode*
       2.2
     3.1))
  (setq *auto-light-mode* (not *auto-light-mode*)))

(def-my-command my-window-comand
     '((?/ "[/] vertical splitter" split-window-horizontally)
       (?- "[-] horoziontal splitter" split-window-vertically)
       (?b "[b]alance windows" balance-windows)
       (?t "[t]ransparency" transparency)
       (?l "[l]ightmode toggle" toggle-auto-light-mode)
       (?k "[k]ill window" delete-window)
       (?m "[m]aximise window" delete-other-windows)
       (?R "[R]otate window" rotate-window)
       (?r "[r]esize widnows" resize-window)
       (?f "[f]it window" my-fit-window-to-buffer)
       (?p "font [p]itch shift" variable-pitch-mode)
       (?v "[v]isual line mode" visual-line-mode)
       (?w "[w]riteroom mode" writeroom-mode)))
#+end_src

*** Buffer Leader Key Menu

#+name: ui-buffer-leader-key-menu
#+begin_src elisp :results none

(def-my-command my-buffer-command
  '((?b "switch [b]uffers" ivy-switch-buffer)
    (?s "[s]ave buffer" save-buffer)
    (?S "[S]ave all buffers" save-some-buffers)
    (?k "[k]ill buffer" kill-buffer)))


#+end_src

*** Perspectives Leader Key Menu 

#+name: ui-perspectives-leader-key-menu
#+begin_src elisp :results none
(def-my-command my-perspective-command
  '((?s "[s]witch perspective" persp-switch)
    (?k "[k]ill perspective" persp-kill)
    (?d "[d]rop buffer" persp-remove-buffer)
    (?n "re[n]ame perspective" persp-rename)
    (?a "[a]dd buffer" persp-add-buffer)))
#+end_src

** Modeline

#+name: modeline-config
#+begin_src elisp :noweb no-export :results none


(package-install 'feline)

(use-package feline
  :config (feline-mode)
  :custom
  (feline-mode-symbols
   '(emacs-lisp-mode "eλ"
     lisp-interaction-mode "eλ"
     shell-mode "🖳"
     lisp-mode "λ"
     org-mode "🌳"
     python-mode "🐍")))


#+end_src



** Themes

*** Installed Themes

#+name: ui-themes-installed
#+begin_src elisp :results none

(package-install 'autothemer) ;; for custom themes

(setq my-installed-themes
      '(pastelmac-theme
        poet-theme
        flexoki-themes
        soft-morning-theme
        goose-theme
        naga-theme
        grandshell-theme
        nimbus-theme
        morgentau-theme))


(dolist (package my-installed-themes)
  (when (not (package-installed-p package)) 
    (package-install package)))

#+end_src

*** Theme Switcher 

#+name: ui-themes-theme-switcher 
#+begin_src elisp :results none


(defun themes-in-package (package)
  "PACKAGE is a symbol naming a particular theme package. Return a
list of symbols naming the themes in that package, if there are
any. Each such symbol returned is suitable for passing to
LOAD-THEME"
  (let* ((package-search-string
          (format "elpa/%s" package))
         (package-dir
          (cl-find-if
           (lambda (dir) (cl-search package-search-string dir))
           (custom-theme--load-path)))
         (suffix
           "-theme\\.el\\'"))
    (when package-dir

      (remove-if-not
       'custom-theme-p
       (mapcar
        (lambda (file)
          (load-file (format "%s/%s" package-dir file))
          (intern (substring file 0 (string-match-p suffix file))))
        (directory-files package-dir nil suffix))))))

(defun toggle-theme-set ()
  (interactive)
  (if (equalp *current-theme-set* *coding-themes*)
      (setq *current-theme-set* *writing-themes*)
    (setq *current-theme-set* *coding-themes*))
  (my-theme-command-next))

(defun my-theme-string ()
  (if (car custom-enabled-themes)
      (format "%s is current" (car custom-enabled-themes))
    ""))

(defun my-theme-cycler ()
  (interactive)
  (let ((still-cycling t))
    (message (format "%s [n]ext or [p]revious. Anything else to quit."
                     (my-theme-string)))
    (while still-cycling
      (let ((char (read-key)))
        (cond
         ((eq char ?n) (my-theme-command-next))
         ((eq char ?p) (my-theme-command-previous))
         (t (setq still-cycling nil))))
      (message (format  "%s [n]ext or [p]revious. Anything else to quit."
                        (my-theme-string))))))

(defun my-theme-linum-mode-cycler ()
  "sometimes cycling themes when linum mode is on causes screwy display. cycling helps."
  (when (and (boundp 'linum-mode) (symbol-value linum-mode))
    (linum-mode -10)
    (linum-mode)))

(defun my-theme-command-next ()
  (interactive)
  (let* ((active-theme (car custom-enabled-themes))
         (next-theme (cadr (cl-member active-theme *current-theme-set*))))
    (when active-theme (disable-theme active-theme))
    (if next-theme
        (load-theme next-theme t)
      (load-theme (car *current-theme-set*) t))
    (setq cursor-type 'box)
    (setq-default cursor-type 'box)
    (my-theme-linum-mode-cycler)))

(defun my-theme-command-previous ()
  (interactive)
  (let* ((active-theme (car custom-enabled-themes))
         (themes (reverse *current-theme-set*))
         (next-theme (cadr (cl-member active-theme themes))))
    (when active-theme (disable-theme active-theme))

    (if next-theme (load-theme next-theme t)
      (load-theme (car themes) t))

    (setq cursor-type 'box)
    (setq-default cursor-type 'box)
    (my-theme-linum-mode-cycler)))

#+end_src

*** Choice Themes

#+name: ui-themes-choice-themes
#+begin_src elisp :noweb no-export :results none

(setq *coding-themes*
      '(
        ;; light
        pastelmac
        flexoki-themes-light
        ;; medium
        goose
        morgentau
        nimbus
        ;; dark
        grandshell
        flexoki-themes-dark
        naga))


(setq *writing-themes*
      (themes-in-package 'poet))

(setq *current-theme-set* *coding-themes*)
(when (car custom-enabled-themes)
  (disable-theme (car custom-enabled-themes)))

(load-theme (middle-of-list *current-theme-set*) t)




#+end_src

#+RESULTS: ui-themes-choice-themes
| poet-dark-monochrome | poet-dark | poet-monochrome | poet |


* Time Managment

#+name: time-management-preamble
#+begin_src elisp :noweb no-export :results none
(setq org-enforce-todo-dependencies t
      org-enforce-todo-checkbox-dependencies t)

(setq org-edit-src-content-indentation 0)
#+end_src

** Pomidor

Pomidor is a neat pomidoro system that I started using recently. I
don't care about the productity aspect, but I like the reminders to
stand up and move around.

#+name: pomidor 
#+begin_src elisp :noweb no-export :results none

(package-install 'pomidor)
(setq pomidor-seconds (* 60 60)
      pomidor-break-seconds (* 15 60)
      pomidor-breaks-before-long 1000
      pomidor-sound-tick nil
      pomidor-sound-tack nil)


#+end_src

** CALFW calendar 

#+name: calfw-org-config
#+begin_src elisp :noweb no-export :results none
(package-install 'calfw)
(package-install 'calfw-org)
(require 'calfw)
(require 'calfw-org)

(custom-set-variables
 '(cfw:org-capture-template
   '("c" "Calendar" entry
     (file+headline "~/notes/deft/project-Planner.org" "CALENDAR")
     "* %?\n %(cfg:org-capture-day)")))


#+end_src

** Org Refile 

#+name: org-refile-config
#+begin_src elisp :results none
(setq my-org-refile-directory "~/notes/deft/")

(defun my-org-refile-targets ()
  (loop for fname in (directory-files my-org-refile-directory)
        when (string-match "\.org$" fname)
        collect (concat my-org-refile-directory fname)))
    
(setq org-refile-targets
      '((my-org-refile-targets :maxlevel . 5)))
#+end_src




** Org Capture 


#+name:org-capture-config 
#+begin_src elisp :results none

(setq org-capture-templates
   (quote
    (
     ("w" "Web Clip" entry
      (file+olp+datetree "~/notes/deft/Web.org" "Weblink")
      "* TOREAD %:annotation \n\n#+begin_quote\n\n%i\n\n#+end_quote\n\n"
      :immediate-finish t
      :empty-lines 1
      :prepend t)
     ("l" "Web Link" entry
      (file+olp+datetree "~/notes/deft/Web.org" "Weblink")
      "* TOREAD %:annotation"
      :immediate-finish t
      :empty-lines 1
      :prepend t)
     ("n" "Note" entry
      (file+olp "~/notes/deft/project-Planner.org" "Notes")
      "* %U\n\n %F\n\n"
      :prepend t
      :empty-lines 1)
     ("j" "Journal" entry
      (file+olp+datetree "~/notes/circadian.org.cpt")
      "")
     ("c" "Calendar" entry
      (file+headline "~/notes/deft/project-Planner.org" "CALENDAR")
      "* %?\n %(cfw:org-capture-day)"))))

#+end_src

** Org Agenda 

#+name: org-agenda-config
#+begin_src elisp :noweb no-export :results none
(custom-set-variables
 '(org-directory "~/notes/deft")
 '(org-agenda-files "~/notes/org-agenda-files"))

(add-hook 'org-agenda-mode-hook
          (lambda ()
            (local-set-key (kbd "M-m") 'my-leader-command)))

#+end_src

* Communication

** ERC

#+name: erc-config
#+begin_src elisp :noweb no-export :results none

(setq erc-hide-list '("JOIN" "QUIT" "PART"))

#+end_src

* Reading, Notes, and Writing 

** General Reading Tools

wordnut is a wordnet interface

#+name: general-reading-tools
#+begin_src elisp :noweb no-export :results none

(package-install 'wordnut)

(def-my-command my-reading-command
  '((?l "[l]ookup word" wordnut-lookup-current-word)
    (?L "[L]ookup any word" wordnut-search)))

#+end_src

imenu-list displayes imenu results in a a navigable table-of-contents tree-like format.

#+name: imenu-list
#+begin_src elisp :noweb no-export

(package-install 'imenu-list)

#+end_src

** Calibre db 

#+name: calibre-config
#+begin_src elisp :results none

(package-install 'calibredb)

(require 'calibredb)
(setq calibredb-root-dir "~/Calibre")
(setq calibredb-db-dir (expand-file-name "metadata.db" calibredb-root-dir))


#+end_src

** PDF tools for Reading and Annotating PDFS

*** PDF Tools 

    #+name: pdf-tools
    #+begin_src elisp :results none

      (package-install 'pdf-tools)
      (pdf-tools-install)

    #+end_src


*** Some functions to quickly annotate 

 #+name: pdf-mode-config
 #+begin_src elisp :results none
 (defun my-pdf-annot-at-position (pos)
   "Return annotation at POS in the selected window.

 POS should be an absolute image position as a cons \(X . Y\).
 Alternatively POS may also be an event position, in which case
 `posn-window' and `posn-object-x-y' is used to find the image
 position.

 Return nil, if no annotation was found."
   (let (window)
     (when (posnp pos)
       (setq window (posn-window pos)
             pos (posn-object-x-y pos)))
     (save-selected-window
       (when window (select-window window 'norecord))
       (let* ((annots (pdf-annot-getannots (pdf-view-current-page)))
              (size (pdf-view-image-size))
              (rx (/ (car pos) (float (car size))))
              (ry (/ (cdr pos) (float (cdr size))))
              (rpos (cons rx ry)))
         (cl-some (lambda (a)
                    (and (cl-some
                          (lambda (e)
                            (pdf-util-edges-inside-p e rpos))
                          (pdf-annot-get-display-edges a))
                         a))
                  annots)))))

 (defun my-pdf-annot-add-text-annotation ()
   (interactive)
   (let ((annot
          (or (my-pdf-annot-at-position '(0 . 0))
              (pdf-annot-add-text-annotation '(0 . 0)))))
     (pdf-annot-edit-contents annot)))

 (def-my-command my-pdf-view-mod-command
   '((?/ "[/] search pdf" pdf-occur)
     (?l "[l]ist annotations" pdf-annot-list-annotations)
     (?m "[m]idnight mode" pdf-view-midnight-minor-mode)
     (?n "add [n]ote" my-pdf-annot-add-text-annotation)))

 #+end_src



** Nov

#+name: nov
#+begin_src elisp :noweb no-export :results none
(package-install 'nov)
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
#+end_src


 
** Elfeed for Reading RSS Feeds

#+name: elfeed-config   
#+begin_src elisp :results none

(package-install 'elfeed)

(require 'elfeed)

(setq elfeed-db-directory "~/notes/dot-elfeed")

(setq elfeed-feeds
      '(("https://harpers.org/feed" culture politics news)
        ("https://theconvivialsociety.substack.com/feed" technology culture philosophy)
        ("https://www.bostonreview.net/topics/philosophy-religion/feed" philosophy)
        ("https://www.bostonreview.net/topics/class-inequality/feed" politics)
        ("https://thepointmag.com/feed/" culture philosophy)
        ("https://www.merriam-webster.com/wotd/feed/rss2" wordoday)))


(setq-default elfeed-search-filter "@2-weeks-ago +unread")

#+end_src

** CCRYPT

   ccrypt is a standard unix encryption tool. It ships with emacs
   bindings that allow users to encrypt and ecrypt files just by
   opening and saving them. Such files have a .cpt extension.
   
   #+name: ccrypt
   #+begin_src elisp :results none
   (load "~/notes/ps-ccrypt.el")
   #+end_src

** Toggler 

   Toggler.el is some code I wrote ages ago. Its sole purpose is to
   toggle some file/buffers for easy access. 

   for now all of the toggling happens in toggler.el, but it shoul be facotred a bit.

#+name: toggler
#+begin_src elisp :results none
(load "~/notes/elisp/toggler.el")


;; no longer needed, I just put the buffer-local variable setting at
;; the top of the file.  REmains for posterity.

;; (defun toggle-secrets-readonly ()
;;   (interactive)
;;   (toggle-secrets)
;;   (when (equal (buffer-name) "secrets.org.cpt")
;;     (read-only-mode)))
#+end_src

** Deft

#+name: deft
#+begin_src elisp :results none
(package-install 'deft)
(require 'subr-x) ;; what i this?
(setq deft-directory "~/notes/deft/")
(setq deft-use-filename-as-title nil)
(setq deft-use-filter-string-for-filename t)
(setq deft-extensions '("org"))

#+end_src

** Writeroom 

#+name: writeroom
#+begin_src elisp :results none
(package-install 'writeroom-mode)

;; (setq my-writeroom-theme 'poet-dark)
;; (setq my-writeroom-cached-theme nil)

;; (add-hook 'writeroom-mode-enable-hook
;;           (lambda ()
;;             (when my-writeroom-theme
;;                    (setf my-writeroom-cached-theme
;;                          (car custom-enabled-themes))
;;                    (disable-theme (car custom-enabled-themes))
;;                    (load-theme my-writeroom-theme))
;;             (variable-pitch-mode)))


;; (add-hook 'writeroom-mode-disable-hook
;;           (lambda ()
;;             (variable-pitch-mode 0)
;;             (disable-theme (car custom-enabled-themes))
;;             (when my-writeroom-cached-theme
;;               (enable-theme my-writeroom-cached-theme))
;;             (setf my-writeroom-cached-theme nil)))


#+end_src

** EWW config 

#+name: eww-config
#+begin_src elisp :noweb no-export :results none

(setq browse-url-browser-function 'eww-browse-url)

;; (add-hook 'eww-mode-hook
;;           (lambda ()
;;             (writeroom-mode t)))

#+end_src

** Markdown Editing 

#+name: markdown-editing
#+begin_src elisp :noweb no-export
(package-install 'markdown-mode)
#+end_src

#+RESULTS: markdown-editing

** My leader key special edit commands

Little utils for editing.

=my-freaking-align= tries to align lines of text into columns.

=my-special-insert= presents a menu for inserting common unicode
characters.

#+name: my-leader-special-edit
#+begin_src elisp :noweb no-export :results none

(defun my-freaking-align ()
  (interactive)
  (align-regexp (region-beginning) (region-end) "\\(\\s-*\\)\\s-" 1 1 t)
  (indent-region (region-beginning) (region-end)))

(def-my-command my-special-edit-command
  '(
    (?i "[i]nsert" my-special-insert)
    (?a "[a]lign"  my-freaking-align)))

#+end_src


*** My leader key Special inserts

Included are common greekletters, arrows, logical symbols and some
math symbols.

#+name: my-special-inserts
#+begin_src elisp :noweb no-export :results none

(defun inserter (what)
  (lexical-let ((what what))
    (lambda ()
      (interactive)
      (insert what))))

(def-my-command my-special-insert
  `((?l "[l] λ" ,(inserter "λ"))
    (?a "[a] α" ,(inserter "α"))
    (?b "[b] β" ,(inserter "β"))
    (?g "[g] γ" ,(inserter "γ"))
    (?p "[p] π" ,(inserter "π"))
    (?f "[f] φ" ,(inserter "φ"))
    (?^ "[^] ↑" ,(inserter "↑"))
    (?v "[v] ↓" ,(inserter "↓"))
    (?> "[>] →" ,(inserter "→"))
    (?< "[<] ←" ,(inserter "←"))
    (?A "[A] ∀" ,(inserter "∀"))
    (?E "[E] ∃" ,(inserter "∃"))
    (?. "[.] ·" ,(inserter "·"))
    (?x "[x] ×" ,(inserter "×"))
    (?X "[X] ⊗" ,(inserter "⊗"))
    (?+ "[+] ⊕" ,(inserter "⊕"))
    (?/ "[/] ÷" ,(inserter "÷"))
    (?U "[U] ∪" ,(inserter "∪"))
    (?I "[I] ∩" ,(inserter "∩"))
    (?& "[&] ∧" ,(inserter "∧"))
    (?| "[|] ∨" ,(inserter "∨"))))

#+end_src

#+RESULTS: my-special-inserts
: my-special-insert



* Software Development 

#+name: software-development-preamble
#+begin_src elisp :noweb no-export :results none

(show-paren-mode 1)
(which-function-mode 1)
#+end_src

** Literate Programming

Hacks and tweaks for literate programming. Org auto tangle will tangle
a file whenever it is saved. 

This is also where I have placed the various configs for evaluating
code in emacs org blocks.

#+name: literate-programming
#+begin_src elisp :noweb no-export
(package-install 'org-auto-tangle)

(require 'org-auto-tangle)
(add-hook 'org-mode-hook 'org-auto-tangle-mode)

(package-install 'jupyter)

(load "~/notes/elisp/ox-ipynb.el")

(require 'ox-ipynb)

(org-babel-do-load-languages
 'org-babel-load-languages
 '((emacs-lisp . t)
   (python . t)
   (lisp . t)
   (C . t)
   (shell . t)
   ;(jupyter . t)
   ))

(setf org-src-window-setup 'current-window)


;; this is a hack to get syntax highlighting. The problem is that
;; newer orgs don't know what to do with `#+begin_src jupyter-python`,
;; so I just have to do `#+begin_src jupyter`, but then there's no
;; syntax highlighting
;; (define-derived-mode jupyter-mode python-mode "Python"
;;   "Haxe syntax highlighting mode. This is simply using js-mode for now.")



#+end_src

#+RESULTS: literate-programming
: current-window

** Pair-Programming

*** CRDT for pair programming


#+name: crdt-config
#+begin_src elisp :results none
(package-install 'crdt)

(def-my-command my-crdt-commands
  '((?s "[s]hare this buffer" crdt-share-buffer)
    (?f "[f]ollow a user" crdt-follow-user)
    (?u "[u]nfollow a user" crdt-stop-follow)
    (?C "[C]lose connection" crdt-disconnect)
    (?c "[c]onnect" crdt-connect)
    (?l "[l]ist buffers" crdt-list-buffers)))


#+end_src

** Tools Essential To Development

#+name: software-dev-essentials
#+begin_src elisp :noweb no-export :results none

(package-install 'company)
(package-install 'magit)
(require 'company)
(global-company-mode 1)
;; see https://github.com/magit/magit/issues/5011
(require 'seq-25)


(package-install 'ag)



#+end_src
*** Projectile 

#+name: projectile
#+begin_src elisp :results none
(require 'cl-lib)
(package-install 'projectile)
(projectile-mode +1)
(setq projectile-project-search-path '("~/projects/"))
(setq projectile-indexing-method 'native)
(setq org-duration-format 'h:mm)

(def-my-command my-projectile-command
  '((?/ "[/] search project" projectile-ag)
    (?r "[r]eplace in project" projectile-replace)
    (?b "project [b]uffers" projectile-ibuffer)
    (?o "[o]pen a project" projectile-switch-project)
    (?g "ma[g]it" magit-status)
    (?j "[j]ump to file" projectile-find-file-dwim)))

#+end_src
** Shell Config 

The following defines commands used by my leader key ssytem to
association one shell with each perspective layout

#+name: shell-config
#+begin_src elisp :noweb no-export :results none

(defun persp-shell--shell-name ()
  (format "*shell %s*" (persp-current-name)))

(defun persp-shell--shell-buffer-p (buffer)
  (string-equal (buffer-name buffer)
                (persp-shell--shell-name)))

(defun persp-shell--shell ()
  (cl-find-if 'persp-shell--shell-buffer-p
              (persp-buffers (persp-curr))))

(defun persp-shell--jump-to-persp-shell ()
  (interactive)
  (let ((buff (persp-shell--shell)))
    (if buff (switch-to-buffer-other-window buff)
      (shell (persp-shell--shell-name)))))

#+end_src

** Common Lisp


*** Packages 

#+name: common-lisp-packages
#+begin_src elisp :results none

(package-install 'paredit)
(package-install 'sly)

#+end_src

*** Sly

#+name: sly-config
#+begin_src elisp :noweb no-export
(def-my-command my-lisp-mode-command
  '((?d "[d]ocumentation" sly-describe-symbol)
    ;(?\t "[TAB] inspect" how do I inspect??? )
    (?S "[S]ync package" sly-mrepl-sync)
    (?\t "TAB inpsect" sly-inspect)))


;; (defvar +symbols-in-cl+ 977)

;; (defun slime-random-words-of-encouragement ()
;;   "Return a string of hackerish encouragement."
;;   (slime-eval
;;    `(swank:documentation-symbol
;;      (cl:loop :for name :being :each :symbol :in (cl:find-package "CL")
;;               :collect (cl:symbol-name name) :into names
;;               :finally (cl:return (cl:elt names ,(random +symbols-in-cl+)))))))

;; (defun slime-fasl-directory ()
;;   (let ((dir (format "%s/.cache/slime-fasls/" (getenv "HOME"))))
;;     (make-directory dir t)
;;     dir))


;; (setq slime-compile-file-options
;;       (list :fasl-directory (slime-fasl-directory)))
#+end_src


*** Editing Config  

#+name: common-lisp-editing-config
#+begin_src elisp :results none

(autoload 'enable-paredit-mode "paredit"
  "Turn on pseudo-structural editing of Lisp code." t)
(add-hook 'emacs-lisp-mode-hook       #'enable-paredit-mode)
(add-hook 'eval-expression-minibuffer-setup-hook #'enable-paredit-mode)
(add-hook 'lisp-mode-hook             #'enable-paredit-mode)
(add-hook 'lisp-interaction-mode-hook #'enable-paredit-mode)
(add-hook 'scheme-mode-hook           #'enable-paredit-mode)

(defun space-for-delimiter-after-$-p (delimiter endp)
  (not (char-equal ?$ (char-before (point))))) 

(defun space-for-delimiter-after-@-p (delimiter endp)
  (not (char-equal ?@ (char-before (point)))))

(defun space-for-delimiter-after-p-p (delimiter endp)
  (not (char-equal ?P (char-before (point)))))


(setq paredit-space-for-delimiter-predicates
      (list 'space-for-delimiter-after-$-p
            'space-for-delimiter-after-@-p
            'space-for-delimiter-after-p-p))


(add-hook 'lisp-mode-hook 'linum-mode)

(setq +common-lisp-package-template+
      "
(defpackage #:%s
  (:use #:cl))

(in-package #:%s)
")

(defun insert-cl-defpackage (name)
  (interactive "sName: ")
  (insert
   (format +common-lisp-package-template+  name name)))

(with-eval-after-load 'lisp-mode
  (progn
    (setq common-lisp-hyperspec-root "file:///home/colin/HyperSpec/")))
#+end_src

*** Coalton

#+name: coalton-config
#+begin_src elisp :noweb no-export


(setq +coalton-package-template+
      "
(defpackage #:%s
  (:import-from
   #:common-lisp
   #:describe
   #:disassemble)
  (:use
   #:coalton
   #:coalton-prelude)
  (:local-nicknames
   (#:types #:coalton-library/types)
   (#:hash #:coalton-library/hash)
   (#:bits #:coalton-library/bits)
   (#:math #:coalton-library/math)
   (#:char #:coalton-library/char)
   (#:string #:coalton-library/string)
   (#:tuple #:coalton-library/tuple)
   (#:optional #:coalton-library/optional)
   (#:list #:coalton-library/list)
   (#:result #:coalton-library/result)
   (#:cell #:coalton-library/cell)
   (#:vector #:coalton-library/vector)
   (#:slice #:coalton-library/slice)
   (#:hashtable #:coalton-library/hashtable)
   (#:st #:coalton-library/monad/state)
   (#:free #:coalton-library/monad/free)
   (#:iter #:coalton-library/iterator)
   (#:sys #:coalton-library/system)))

(named-readtables:in-readtable coalton:coalton)

(in-package #:%s)

(coalton-toplevel 

)
")

(defun insert-coalton-defpackage (name)
  (interactive "sName: ")
  (insert
   (format +coalton-package-template+  name name)))



#+end_src

#+RESULTS: coalton-config
: insert-coalton-defpackage

#+RESULTS: coalton
: insert-coalton-defpackage

** Haxe 

#+name: haxe-config
#+begin_src elisp :noweb no-export
(package-install 'haxe-mode)
#+end_src

#+RESULTS: haxe-config
: ‘haxe-mode’ is already installed


** COMMENT Python
#+name: python-config
#+begin_src elisp :noweb no-export :results none

(package-install 'pyvenv)
(setenv "WORKON_HOME" "~/miniconda3/envs")
(pyvenv-mode 1)


(package-install 'elpy)
(elpy-enable)

(setq python-shell-interpreter "jupyter"
      python-shell-interpreter-args "console --simple-prompt"
      python-shell-prompt-detect-failure-warning nil)


(add-to-list 'python-shell-completion-native-disabled-interpreters
             "jupyter")


#+end_src

#+RESULTS: python-config :results none

#+RESULTS: python-config

* Tools
** Export Emacs Buffer

#+name: buffer-export-config
#+begin_src emacs-lisp 
(defun screenshot-svg (filename)
  "Save a screenshot of the current frame as an SVG image.
Saves to a temp file and puts the filename in the kill ring."
  (interactive "sfilename:")
  (let* ((tmpfile (make-temp-file "Emacs" nil ".svg"))
         (data (x-export-frames nil 'svg)))
    (with-temp-file tmpfile
      (insert data))
    (copy-file tmpfile filename t)
    (message filename)))
#+end_src

#+RESULTS: buffer-export-config
: screenshot-svg
** Helpful

#+name: helpful
#+begin_src elisp :noweb no-export
(package-install 'helpful)

#+end_src

#+RESULTS: helpful
: Package ‘helpful’ installed.

* External Loads

#+name: loads
#+begin_src elisp :noweb no-export
(load "~/.emacs.d/cicadas-config.el")
(load "~/projects/cicadas.org/cicatasks.el")
#+end_src