[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
No menu entry suppression.
Changed files
blendoit/blendoit-init.org
@@ -25,8 +25,18 @@
25
25
# (org-babel-load-file "~/.emacs.d/blendoit/test.org")
26
26
# #+END_SRC
27
27
28
Removed:
* Preliminary setup
28
Added:
* TODO First-time setup
29
29
30
Added:
Spacemacs-like dialog for default settings.
31
Added:
32
Added:
#+NAME: first-setup
33
Added:
#+BEGIN_SRC emacs-lisp
34
Added:
;; Prompt enterprise or personal install. Create file in .emacs.d/ on Linux,
35
Added:
;; AppData/ on Windows. Ask user for details and preferred bindings.
36
Added:
#+END_SRC
37
Added:
38
Added:
* Early setup
39
Added:
30
40
** Garbage collection
31
41
32
42
First, we increase the RAM threshold beyond which the garbage collector is
@@ -638,96 +648,11 @@
638
648
639
649
** Clean up menus
640
650
641
Removed:
We reduce the burden on the user by reducing total amount of entries in GUI
642
Removed:
menus.
651
Added:
Originally, I wished to inhibit certain entries in the GUI menus. Not worth the
652
Added:
effort at this time.
643
653
644
Removed:
*** File
654
Added:
~menu-bar-mode~ is inhibited in =../custom-init.el=.
645
655
646
Removed:
#+BEGIN_SRC emacs-lisp
647
Removed:
(define-key menu-bar-file-menu [dired] nil)
648
Removed:
(define-key menu-bar-file-menu [print-buffer] nil)
649
Removed:
(define-key menu-bar-file-menu [print-region] nil)
650
Removed:
(define-key menu-bar-file-menu [ps-print-buffer-faces] nil)
651
Removed:
(define-key menu-bar-file-menu [ps-print-region-faces] nil)
652
Removed:
(define-key menu-bar-file-menu [ps-print-buffer] nil)
653
Removed:
(define-key menu-bar-file-menu [ps-print-region] nil)
654
Removed:
(define-key menu-bar-file-menu [split-window-below] nil)
655
Removed:
(define-key menu-bar-file-menu [split-window-right] nil)
656
Removed:
(define-key menu-bar-file-menu [dired] nil)
657
Removed:
#+END_SRC
658
Removed:
659
Removed:
*** Edit
660
Removed:
661
Removed:
#+BEGIN_SRC emacs-lisp
662
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
663
Removed:
(define-key menu-bar-file-menu [dired] nil)
664
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
665
Removed:
#+END_SRC
666
Removed:
667
Removed:
*** Options
668
Removed:
669
Removed:
#+BEGIN_SRC emacs-lisp
670
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
671
Removed:
(define-key menu-bar-file-menu [dired] nil)
672
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
673
Removed:
#+END_SRC
674
Removed:
675
Removed:
*** Buffers
676
Removed:
677
Removed:
#+BEGIN_SRC emacs-lisp
678
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
679
Removed:
(define-key menu-bar-file-menu [dired] nil)
680
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
681
Removed:
#+END_SRC
682
Removed:
683
Removed:
*** Tools
684
Removed:
685
Removed:
#+BEGIN_SRC emacs-lisp
686
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
687
Removed:
(define-key menu-bar-file-menu [dired] nil)
688
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
689
Removed:
#+END_SRC
690
Removed:
691
Removed:
*** Org
692
Removed:
693
Removed:
#+BEGIN_SRC emacs-lisp
694
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
695
Removed:
(define-key menu-bar-file-menu [dired] nil)
696
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
697
Removed:
#+END_SRC
698
Removed:
699
Removed:
*** Tbl
700
Removed:
701
Removed:
#+BEGIN_SRC emacs-lisp
702
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
703
Removed:
(define-key menu-bar-file-menu [dired] nil)
704
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
705
Removed:
#+END_SRC
706
Removed:
707
Removed:
*** Text
708
Removed:
709
Removed:
#+BEGIN_SRC emacs-lisp
710
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
711
Removed:
(define-key menu-bar-file-menu [dired] nil)
712
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
713
Removed:
#+END_SRC
714
Removed:
715
Removed:
*** Projectile
716
Removed:
717
Removed:
#+BEGIN_SRC emacs-lisp
718
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
719
Removed:
(define-key menu-bar-file-menu [dired] nil)
720
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
721
Removed:
#+END_SRC
722
Removed:
723
Removed:
*** Help
724
Removed:
725
Removed:
#+BEGIN_SRC emacs-lisp
726
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
727
Removed:
(define-key menu-bar-file-menu [dired] nil)
728
Removed:
(define-key menu-bar-help-menu [emacs-psychotherapist] nil)
729
Removed:
#+END_SRC
730
Removed:
731
656
** Coding standards
732
657
733
658
This is just a better default.
@@ -737,201 +662,19 @@
737
662
c-basic-offset 4)
738
663
#+END_SRC
739
664
740
Removed:
** Tabs
665
Added:
** Dividers
741
666
667
Added:
This ensures users can resize windows using the GUI.
668
Added:
742
669
#+BEGIN_SRC emacs-lisp
743
Removed:
(use-package tabbar)
670
Added:
(menu-bar-bottom-and-right-window-divider)
744
671
#+END_SRC
745
672
746
Removed:
Thank you
747
Removed:
https://andreyorst.gitlab.io/posts/2020-05-10-making-emacs-tabs-look-like-in-atom/
748
673
674
Added:
** Tabs
675
Added:
749
676
#+BEGIN_SRC emacs-lisp
750
Removed:
(when (and window-system
751
Removed:
(not (version< emacs-version "27")))
752
Removed:
(use-package tab-line
753
Removed:
:hook (after-init . global-tab-line-mode)
754
Removed:
:config
755
Removed:
(defun tab-line-close-tab (&optional e)
756
Removed:
"Close the selected tab.
757
677
758
Removed:
If tab is presented in another window, close the tab by using
759
Removed:
`bury-buffer` function. If tab is unique to all existing
760
Removed:
windows, kill the buffer with `kill-buffer` function. Lastly, if
761
Removed:
no tabs left in the window, it is deleted with `delete-window`
762
Removed:
function."
763
Removed:
(interactive "e")
764
Removed:
(let* ((posnp (event-start e))
765
Removed:
(window (posn-window posnp))
766
Removed:
(buffer (get-pos-property 1 'tab (car (posn-string posnp)))))
767
Removed:
(with-selected-window window
768
Removed:
(let ((tab-list (tab-line-tabs-window-buffers))
769
Removed:
(buffer-list (flatten-list
770
Removed:
(seq-reduce (lambda (list window)
771
Removed:
(select-window window t)
772
Removed:
(cons (tab-line-tabs-window-buffers) list))
773
Removed:
(window-list) nil))))
774
Removed:
(select-window window)
775
Removed:
(if (> (seq-count (lambda (b) (eq b buffer)) buffer-list) 1)
776
Removed:
(progn
777
Removed:
(if (eq buffer (current-buffer))
778
Removed:
(bury-buffer)
779
Removed:
(set-window-prev-buffers window (assq-delete-all buffer (window-prev-buffers)))
780
Removed:
(set-window-next-buffers window (delq buffer (window-next-buffers))))
781
Removed:
(unless (cdr tab-list)
782
Removed:
(ignore-errors (delete-window window))))
783
Removed:
(and (kill-buffer buffer)
784
Removed:
(unless (cdr tab-list)
785
Removed:
(ignore-errors (delete-window window)))))))))
786
Removed:
787
Removed:
788
Removed:
(defcustom tab-line-tab-min-width 10
789
Removed:
"Minimum width of a tab in characters."
790
Removed:
:type 'integer
791
Removed:
:group 'tab-line)
792
Removed:
793
Removed:
794
Removed:
(defcustom tab-line-tab-max-width 30
795
Removed:
"Maximum width of a tab in characters."
796
Removed:
:type 'integer
797
Removed:
:group 'tab-line)
798
Removed:
799
Removed:
(defcustom tab-line-ellipsis-string "…"
800
Removed:
"String for indicating truncated names"
801
Removed:
:type 'string
802
Removed:
:group 'tab-line)
803
Removed:
804
Removed:
(defun aorst/tab-line--tab-width (window-width tab-amount)
805
Removed:
"Calculate width of single tab dividing WINDOW-WIDTH by TAB-AMOUNT."
806
Removed:
(let* ((close-button-size
807
Removed:
(if tab-line-close-button-show
808
Removed:
(length (substring-no-properties tab-line-close-button)) 0))
809
Removed:
(tab-width (/ window-width tab-amount)))
810
Removed:
(- (cond ((< window-width 0)
811
Removed:
tab-line-tab-min-width)
812
Removed:
((>= tab-width tab-line-tab-max-width)
813
Removed:
tab-line-tab-max-width)
814
Removed:
((< tab-width tab-line-tab-min-width)
815
Removed:
tab-line-tab-min-width)
816
Removed:
(t tab-width))
817
Removed:
close-button-size)))
818
Removed:
819
Removed:
(defun aorst/tab-line--max-width (window)
820
Removed:
"Calculate free width of the WINDOW.
821
Removed:
822
Removed:
Free width means amount of space we can use to display tabs
823
Removed:
without truncation."
824
Removed:
(- (window-width window)
825
Removed:
(length (substring-no-properties tab-line-left-button))
826
Removed:
(length (substring-no-properties tab-line-right-button))
827
Removed:
(if tab-line-new-button-show
828
Removed:
(length (substring-no-properties tab-line-new-button))
829
Removed:
0)))
830
Removed:
831
Removed:
832
Removed:
(defun aorst/tab-line--make-pad (tab-width name-width)
833
Removed:
"Generate padding string based on TAB-WIDTH and NAME-WIDTH."
834
Removed:
(let* ((width (- tab-width name-width))
835
Removed:
(padding (/ (if (oddp width) (+ width 1) width) 2)))
836
Removed:
(make-string padding ?\s)))
837
Removed:
838
Removed:
839
Removed:
(defun aorst/tab-line-name-buffer (buffer &rest _buffers)
840
Removed:
"Create name for tab with padding and truncation.
841
Removed:
842
Removed:
If buffer name is shorter than `tab-line-tab-max-width' it gets
843
Removed:
centered with spaces, otherwise it is truncated, to preserve
844
Removed:
equal width for all tabs. This function also tries to fit as
845
Removed:
many tabs in window as possible, so if there are no room for tabs
846
Removed:
with maximum width, it calculates new width for each tab and
847
Removed:
truncates text if needed. Minimal width can be set with
848
Removed:
`tab-line-tab-min-width' variable."
849
Removed:
(with-current-buffer buffer
850
Removed:
(let* ((amount (length (tab-line-tabs-window-buffers)))
851
Removed:
(width (aorst/tab-line--tab-width
852
Removed:
(aorst/tab-line--max-width (get-buffer-window buffer))
853
Removed:
amount))
854
Removed:
(buffer (string-trim (buffer-name)))
855
Removed:
(name-width (length buffer))
856
Removed:
(right-pad (if tab-line-close-button-show "" " "))
857
Removed:
(truncate-width (- width
858
Removed:
(length tab-line-ellipsis-string)
859
Removed:
(length right-pad))))
860
Removed:
(if (>= name-width truncate-width)
861
Removed:
(concat " " (truncate-string-to-width buffer truncate-width) tab-line-ellipsis-string right-pad)
862
Removed:
(let* ((padding (aorst/tab-line--make-pad width name-width))
863
Removed:
(tab-text (concat padding buffer))
864
Removed:
(text-width (length tab-text)))
865
Removed:
(concat tab-text (make-string (- width text-width) ?\s)))))))
866
Removed:
867
Removed:
868
Removed:
(setq tab-line-close-button-show t
869
Removed:
tab-line-new-button-show nil
870
Removed:
tab-line-separator ""
871
Removed:
tab-line-tab-name-function #'aorst/tab-line-name-buffer
872
Removed:
tab-line-right-button (propertize (if (char-displayable-p ?▶) " ▶ " " > ")
873
Removed:
'keymap tab-line-right-map
874
Removed:
'mouse-face 'tab-line-highlight
875
Removed:
'help-echo "Click to scroll right")
876
Removed:
tab-line-left-button (propertize (if (char-displayable-p ?◀) " ◀ " " < ")
877
Removed:
'keymap tab-line-left-map
878
Removed:
'mouse-face 'tab-line-highlight
879
Removed:
'help-echo "Click to scroll left")
880
Removed:
tab-line-close-button (propertize (if (char-displayable-p ?×) " × " " x ")
881
Removed:
'keymap tab-line-tab-close-map
882
Removed:
'mouse-face 'tab-line-close-highlight
883
Removed:
'help-echo "Click to close tab"))
884
Removed:
885
Removed:
886
Removed:
(let ((bg (if (facep 'solaire-default-face)
887
Removed:
(face-attribute 'solaire-default-face :background)
888
Removed:
(face-attribute 'default :background)))
889
Removed:
(fg (face-attribute 'default :foreground))
890
Removed:
(base (if (facep 'solaire-default-face)
891
Removed:
(face-attribute 'default :background)
892
Removed:
(face-attribute 'mode-line :background)))
893
Removed:
(box-width (/ (line-pixel-height) 2)))
894
Removed:
(when (and (color-defined-p bg)
895
Removed:
(color-defined-p fg)
896
Removed:
(color-defined-p base)
897
Removed:
(numberp box-width))
898
Removed:
(set-face-attribute 'tab-line nil
899
Removed:
:background base
900
Removed:
:foreground fg
901
Removed:
:height 1.0
902
Removed:
:inherit nil
903
Removed:
:box (list :line-width -1 :color base))
904
Removed:
(set-face-attribute 'tab-line-tab nil
905
Removed:
:foreground fg
906
Removed:
:background bg
907
Removed:
:weight 'normal
908
Removed:
:inherit nil
909
Removed:
:box (list :line-width box-width :color bg))
910
Removed:
(set-face-attribute 'tab-line-tab-inactive nil
911
Removed:
:foreground fg
912
Removed:
:background base
913
Removed:
:weight 'normal
914
Removed:
:inherit nil
915
Removed:
:box (list :line-width box-width :color base))
916
Removed:
(set-face-attribute 'tab-line-tab-current nil
917
Removed:
:foreground fg
918
Removed:
:background bg
919
Removed:
:weight 'normal
920
Removed:
:inherit nil
921
Removed:
:box (list :line-width box-width :color bg))))
922
Removed:
(setq tab-line-exclude-modes '())
923
Removed:
(dolist (mode '(ediff-mode
924
Removed:
process-menu-mode
925
Removed:
term-mode
926
Removed:
vterm-mode))
927
Removed:
(add-to-list 'tab-line-exclude-modes mode))
928
Removed:
929
Removed:
(defun aorst/tab-line-drop-caches ()
930
Removed:
"Drops `tab-line' cache in every window."
931
Removed:
(dolist (window (window-list))
932
Removed:
(set-window-parameter window 'tab-line-cache nil)))
933
Removed:
934
Removed:
(add-hook 'window-configuration-change-hook #'aorst/tab-line-drop-caches)))
935
678
#+END_SRC
936
679
937
680
** auto fill
blendoit/themes/blendoit-light-theme.el
@@ -1,9 +1,9 @@
1
1
(deftheme blendoit-light
2
Removed:
"Created 2020-08-03.")
2
Added:
"Created 2020-08-09.")
3
3
4
4
(custom-theme-set-faces
5
5
'blendoit-light
6
Removed:
'(fixed-pitch ((t (:inherit default :family "Dejavu Sans Mono"))))
6
Added:
'(fixed-pitch ((t (:family "Dejavu Sans Mono"))))
7
7
'(variable-pitch ((t (:family "Liberation Sans"))))
8
8
'(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
9
9
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
@@ -16,15 +16,14 @@
16
16
'(font-lock-builtin-face ((((class grayscale) (background light)) (:weight bold :foreground "LightGray")) (((class grayscale) (background dark)) (:weight bold :foreground "DimGray")) (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Orchid")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold))))
17
17
'(font-lock-comment-delimiter-face ((t (:inherit font-lock-comment-face :foreground "dim gray"))))
18
18
'(font-lock-comment-face ((t (:foreground "dark gray" :slant italic))))
19
Removed:
'(font-lock-constant-face ((((class grayscale) (background light)) (:underline (:color foreground-color :style line) :weight bold :foreground "LightGray")) (((class grayscale) (background dark)) (:underline (:color foreground-color :style line) :weight bold :foreground "Gray50")) (((class color) (min-colors 88) (background light)) (:foreground "dark cyan")) (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine")) (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue")) (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine")) (((class color) (min-colors 8)) (:foreground "magenta")) (t (:underline (:color foreground-color :style line) :weight bold))))
20
Removed:
'(font-lock-doc-face ((t (:inherit font-lock-string-face))))
19
Added:
'(font-lock-constant-face ((t (:foreground "dark cyan"))))
21
20
'(font-lock-function-name-face ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold :inverse-video t))))
22
21
'(font-lock-keyword-face ((t (:foreground "DodgerBlue4"))))
23
22
'(font-lock-negation-char-face ((t nil)))
24
23
'(font-lock-preprocessor-face ((t (:inherit (font-lock-builtin-face)))))
25
24
'(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))
26
25
'(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))
27
Removed:
'(font-lock-string-face ((t (:foreground "dark cyan"))))
26
Added:
'(font-lock-string-face ((t (:foreground "DeepSkyBlue3"))))
28
27
'(font-lock-type-face ((t (:foreground "ForestGreen"))))
29
28
'(font-lock-variable-name-face ((t (:foreground "sienna"))))
30
29
'(font-lock-warning-face ((t (:inherit (error)))))
@@ -41,7 +40,7 @@
41
40
'(isearch-fail ((((class color) (min-colors 88) (background light)) (:background "RosyBrown1")) (((class color) (min-colors 88) (background dark)) (:background "red4")) (((class color) (min-colors 16)) (:background "red")) (((class color) (min-colors 8)) (:background "red")) (((class color grayscale)) (:foreground "grey")) (t (:inverse-video t))))
42
41
'(lazy-highlight ((t (:background "paleturquoise"))))
43
42
'(match ((((class color) (min-colors 88) (background light)) (:background "yellow1")) (((class color) (min-colors 88) (background dark)) (:background "RoyalBlue3")) (((class color) (min-colors 8) (background light)) (:foreground "black" :background "yellow")) (((class color) (min-colors 8) (background dark)) (:foreground "white" :background "blue")) (((type tty) (class mono)) (:inverse-video t)) (t (:background "gray"))))
44
Removed:
'(next-error ((t (:inherit (region)))))
43
Added:
'(next-error ((t (:inherit region))))
45
44
'(query-replace ((t (:inherit (isearch)))))
46
45
'(org-table ((t (:box (:line-width 2 :color "gainsboro" :style released-button)))))
47
46
'(org-formula ((t (:inherit org-table))))
@@ -50,8 +49,8 @@
50
49
'(org-level-1 ((t (:inherit fixed-pitch :height 1.6 :weight bold))))
51
50
'(org-level-2 ((t (:inherit fixed-pitch :height 1.4 :weight bold))))
52
51
'(org-level-3 ((t (:inherit fixed-pitch :weight bold :height 1.2))))
53
Removed:
'(org-level-4 ((t (:height 1.1 :weight bold :inherit fixed-pitch))))
54
Removed:
'(org-date ((t (:inherit link :foreground "DodgerBlue3" :slant italic :family "Liberation Serif"))))
52
Added:
'(org-level-4 ((t (:inherit fixed-pitch :weight bold :height 1.1))))
53
Added:
'(org-date ((t (:family "Liberation Serif" :slant italic :foreground "DodgerBlue3" :inherit link))))
55
54
'(org-footnote ((t (:foreground "DodgerBlue3" :inherit link))))
56
55
'(org-block ((t (:inherit nil :family "Hermit"))))
57
56
'(org-tag ((t (:inherit link :weight bold :foreground "DodgerBlue3"))))
@@ -59,8 +58,11 @@
59
58
'(link ((t (:foreground "blue" :underline t))))
60
59
'(org-document-info-keyword ((t (:inherit org-meta-line))))
61
60
'(dashboard-heading ((t (:inherit font-lock-keyword-face))))
62
Removed:
'(default ((t (:background "white" :foreground "black" :height 142 :family "Liberation Mono"))))
63
Removed:
'(org-todo ((t (:foreground "Red1" :box 2 :weight bold))))
64
Removed:
'(org-done ((t (:foreground "ForestGreen" :box 2 :weight bold)))))
61
Added:
'(org-todo ((t (:weight bold :box nil :foreground "Red1"))))
62
Added:
'(org-done ((t (:weight bold :box nil :foreground "ForestGreen"))))
63
Added:
'(font-lock-doc-face ((t (:foreground "steel blue" :inherit default))))
64
Added:
'(org-code ((t (:inherit default :background "light grey" :foreground "black"))))
65
Added:
'(org-verbatim ((t (:inherit org-meta-line))))
66
Added:
'(default ((t (:background "white" :foreground "black" :height 142 :family "Liberation Mono")))))
65
67
66
68
(provide-theme 'blendoit-light)
init-custom.el
@@ -18,7 +18,7 @@
18
18
'(custom-enabled-themes nil)
19
19
'(custom-safe-themes
20
20
(quote
21
Removed:
("5711d98f14878bff94540676e66e7a6f14c82b29ddc7023f6ee8efbd8a479c5c" "3ab5261e83ce9723138117a01b6e73bea41398f8d9293f5b02106f3aead6dbab" "924ce9031ebdb3d16fc6015eef7db63af825780f99a5c90dcdf13233e7939c0c" "323d7466b7924f0f58653bde012468a2fdc3a1ae8492683f866a0222f4c15d09" "0f15173196d31f3d06ff303ca27cc861dd7884132393c91128d761f79655ec91" "291ca32d7cab5f302361ccb42762976004e7fae2edbc34e11152f43a6e5c9c16" "b0c79fa277592cee7dbbfea3170e1f3269b719b54b33d603acdaee5b738b08d6" "a8c710c7efb883b06accec971ed17c18e09f3d05807069a009d93ec7ade38627" "593c0435c789f28bcddd9159d9fa80a45eda69691c67caa4ecba97a5e9f6ac09" "d0c72c22aa52049e1118bc2d98b4037b5203709820525d4f6e9af75cbeb3ae51" "1a212a5389f8a1038252d279a8d7352e548e8d3c8eb20bc4f07870e9812f9392" "c243ddcbe8b454b88b639719082c1a1e82cf4ee67238e5c89346c808542793ac" "df18c6ae25e56a4a079b568e033a65387abd8546c88d10c8f71fd53da6bfaf83" "6f553b32594f38496d6e1a1537f43c7bb01be6e1dd23b71d6eab0dbabec89fea" "a71707f476a82a62b095be6c6dccb0da91d4f6ea08ca6884698442917e916c34" "52beb7a2aaec5d3b886f0a6bb1b3857a2bc231968323528bfcc38cf001f11049" "578cfaf5c4401cee53c3995369c350494fc269f600143335ec1262ffcba4d2f9" "ba6064e2177b67fdc02d3f03a9113d4ec9b74aa59a9c4c113941e2df3c66e300" "bf34b0175ef0ec31b21a711a727c42c8d7ea365687a4112a9673df8533d1d963" "dbe7226f44551ec85af99674282fce8340ee8109cff62fe251f3979125472796" "ec66048d6ed6a5d65a74fd4fd0ba1ce034fd58bc75624539dbed2b85046ee5b7" "b1a729f6d62b537e06abd2913978fc8203136f978bcdd4d0704f232fb59f6d07" "7bc04e8d1cbfa63ac7bfa685909f48cf7b05b772f7fe1de166dc72788c4ae10c" "037c17db2dda3e0a7b367ec22f80933ad61ee2de7b1abbf670172a5e165b9d7f" "dfe4340343a7f5e80441ae544378943db147a1eb6fa5e074fb8955a36b0f182f" "e1ed7dc1cdf09ba9c589c3b829a95723a1b962eaa90668486367f6500d6e464f" "a8b3c62c9b9221c19993f58bb6eaf532e55363d8d2368fde50eb0eef86929ddf" "dc3a12a73fd52959e3c8eebff0911f8a3f764def026e557660590b5fd1248f4b" "b13d696132ccaf45c6f5119439b6664abd2d871197a92f53fedb4e041db5e578" "a5ffe59afbe822411636369fd2f0f7a37dac10f3932ee67be02cc4d5f2f34a62" "05c1eb6742e96a622772413711d1f7b8cc4b7b7ac0a5bb9da3cd0f5a03a94d63" "d400bc776687ac7d8a04f3de3bd12b5714316ce9571805fe43b7b9a3207398e9" "254b7a1f3b6ae1e26a7981a904374909e6094d1959766c8a56e0a72c1bc73988" "c704a1e52c8393bab1edf20333c00f0a1f4e9d68f81dac2231ff8ac7fa594270" "0d33946ed3756f7af05220d584e16e87e94cea39e1a6eef8203762404436c971" "4ea5fc77916d724956ba8668959c87517e25e4df75cc23bbb9709d2c417e420b" "f4992270fc1f04c92a35dc92ff7ae108fcea48d00aed59cd2e2074228f13d206" "4baddb255d9d85b2de41ed80db2304f258e5ab4d9dd86e3d7b645b3fe5d4af47" "77856f1616f0a4befe693cc89718e4e81ca02186ccd423a70f741f2e3974d10f" "9ce3f9dc04a4a50169c8bc58202bd4107bd3bec3dee04ca0d2747f563fdbf37c" "2383aad6d7a2ab84816102a614217ae2f71346febf758a35c38f540cf5a4f870" "4f3256a77d296e0f96ca6071c61f9de658e8e5e8fbb33a3fb0a25bd3cac1ba95" "05f98c3f10b215b37151685fb42bc108481a59145fd557edf5c4b140902af69b" "e6e3f9539236fc2b9f4c1ca06e47289e3e84011d194edc2fe8db1326f27162e2" "91ae05962e013e0925e56e4b98d87090f48de36876ba9fa939ae760e16aee566" "00087223a3ba61a42feb4bb898e8eb6cbc301e96e8e8d46c50f202b6bb435bc8" "b77b4effef346442f97b12b3b17056e60e7d8122fba4b7d692c7e633b00fef2a" "413627ea61e7aee5429a37a07d893436fa50d90db1c9cad63c3fe880d16ea366" "9de2e8914e2d8bdadad1eb0ca9ba5a1c5bbbfb71b91eaca7996691cd97f0e863" "fe4a68cae5bf268eb4da12eb78d06e40265e46c0e63eb5bf6e3545c4d0fe4cf9" "35ae89ec94b266fe007ec56be07b30aabaf6565d9a59c2e21e5943a9fec58069" "5c2bac01062bc2496baf2fde79cc4ede470b9395af5014991132034dcbfda677" "2df61c2e91799bf9d31fbe5ca4d407ef03669dbc8efd84f8acab83b0bbb63a56" "4d966fc76684e7f95122c877a95e8f6e4fa9d784225a4111cf1ce80969a4498f" "935b7766c7b74d2801be8a0cbd14967d090769e7353fcdf72b1a4d695393fd04" "503683e60ca9efa6d138cccae401269d13aef9e0101fbda20341edc2294c950b" "e55352d8828ed4e056652fa7fd5db47603ee48368fbae500837630a7345fb6b2" "f81e8249778eeeed1dc71c69cc37aab6f68d111b6e770496b2e6c87f4d1d9a05" "1ec13d23f091b5e6fb8621b85fad1ebbc3fb132daf505fd953d27f97ec573d67" "923a4e39d4da77bc40ddc2ba2fceec2c5613392bf32cc06a59e10db55ddd4ebd" "57d6156b7ae19dee1c627bcfcf298f52d271e4ca805b5c37d59906c87e281ce3" "aa4e08348cd327190a188a450d55a0abaf8780cf8d04743d632937b593bba5c9" "50fa2844d84cecfa718f92122e095ecc1243fdf004bb1348e9cee856707c6f3d" "429c077679e0586d1b6a9f22586129bb4e0793e70b414ff93f023fcfa654b08a" "9893c7f1274df4d4df0573da1ee4dfe32f73f71cdf45bba7596a09e6c637d990" "e274c4d17ef47311855ce93dcc34c512bb285e3a01e9b3b1b735e059a865e48d" "59b58e2d0b77f0e8dc305bba18dc0913ae11ebc1ea91165911f5f3bd46910470" "2946f0682172ff16ffe531ce59ea26044f949e8a51b2d4ab14d74e21fa8f2b67" "de4fe3532d51a731d313e588531e32a26f9824e216fff1306ca270487f833045" "096bb91c8fd17ff6f2f51ddaf51897c9710da5486fbbb2d370e3ff3b209ff446" "700f0a38b888fb3fe656b9d8647d71fa99b3684641cf9e02106a3e3a1ca1d87a" "5cbf5345c2af35887f1518c35c9a62409304b20006f2455ef1313507e0552b1f" default)))
21
Added:
("d4c160e3c4f172751b29b9f94adbea0f02066618ecca4553c018b027966640c7" "3a4d17a991c9aa1e3ac6d34f63f0588e551c5b38aae25e6bafab38b256e79cdc" "549b332d92fd708c836646a90c37cacca20b48223abf7fa0c29a22bf40d60d35" "9a192155514fbdeb01ccaf996e5b1fbc6b6bf4a18f7bde8f607d57678fad344c" "7f3d65205cac6f913bce9d01373719a44722a07f45501f7d00fe1334cc650814" "5711d98f14878bff94540676e66e7a6f14c82b29ddc7023f6ee8efbd8a479c5c" "3ab5261e83ce9723138117a01b6e73bea41398f8d9293f5b02106f3aead6dbab" "924ce9031ebdb3d16fc6015eef7db63af825780f99a5c90dcdf13233e7939c0c" "323d7466b7924f0f58653bde012468a2fdc3a1ae8492683f866a0222f4c15d09" "0f15173196d31f3d06ff303ca27cc861dd7884132393c91128d761f79655ec91" "291ca32d7cab5f302361ccb42762976004e7fae2edbc34e11152f43a6e5c9c16" "b0c79fa277592cee7dbbfea3170e1f3269b719b54b33d603acdaee5b738b08d6" "a8c710c7efb883b06accec971ed17c18e09f3d05807069a009d93ec7ade38627" "593c0435c789f28bcddd9159d9fa80a45eda69691c67caa4ecba97a5e9f6ac09" "d0c72c22aa52049e1118bc2d98b4037b5203709820525d4f6e9af75cbeb3ae51" "1a212a5389f8a1038252d279a8d7352e548e8d3c8eb20bc4f07870e9812f9392" "c243ddcbe8b454b88b639719082c1a1e82cf4ee67238e5c89346c808542793ac" "df18c6ae25e56a4a079b568e033a65387abd8546c88d10c8f71fd53da6bfaf83" "6f553b32594f38496d6e1a1537f43c7bb01be6e1dd23b71d6eab0dbabec89fea" "a71707f476a82a62b095be6c6dccb0da91d4f6ea08ca6884698442917e916c34" "52beb7a2aaec5d3b886f0a6bb1b3857a2bc231968323528bfcc38cf001f11049" "578cfaf5c4401cee53c3995369c350494fc269f600143335ec1262ffcba4d2f9" "ba6064e2177b67fdc02d3f03a9113d4ec9b74aa59a9c4c113941e2df3c66e300" "bf34b0175ef0ec31b21a711a727c42c8d7ea365687a4112a9673df8533d1d963" "dbe7226f44551ec85af99674282fce8340ee8109cff62fe251f3979125472796" "ec66048d6ed6a5d65a74fd4fd0ba1ce034fd58bc75624539dbed2b85046ee5b7" "b1a729f6d62b537e06abd2913978fc8203136f978bcdd4d0704f232fb59f6d07" "7bc04e8d1cbfa63ac7bfa685909f48cf7b05b772f7fe1de166dc72788c4ae10c" "037c17db2dda3e0a7b367ec22f80933ad61ee2de7b1abbf670172a5e165b9d7f" "dfe4340343a7f5e80441ae544378943db147a1eb6fa5e074fb8955a36b0f182f" "e1ed7dc1cdf09ba9c589c3b829a95723a1b962eaa90668486367f6500d6e464f" "a8b3c62c9b9221c19993f58bb6eaf532e55363d8d2368fde50eb0eef86929ddf" "dc3a12a73fd52959e3c8eebff0911f8a3f764def026e557660590b5fd1248f4b" "b13d696132ccaf45c6f5119439b6664abd2d871197a92f53fedb4e041db5e578" "a5ffe59afbe822411636369fd2f0f7a37dac10f3932ee67be02cc4d5f2f34a62" "05c1eb6742e96a622772413711d1f7b8cc4b7b7ac0a5bb9da3cd0f5a03a94d63" "d400bc776687ac7d8a04f3de3bd12b5714316ce9571805fe43b7b9a3207398e9" "254b7a1f3b6ae1e26a7981a904374909e6094d1959766c8a56e0a72c1bc73988" "c704a1e52c8393bab1edf20333c00f0a1f4e9d68f81dac2231ff8ac7fa594270" "0d33946ed3756f7af05220d584e16e87e94cea39e1a6eef8203762404436c971" "4ea5fc77916d724956ba8668959c87517e25e4df75cc23bbb9709d2c417e420b" "f4992270fc1f04c92a35dc92ff7ae108fcea48d00aed59cd2e2074228f13d206" "4baddb255d9d85b2de41ed80db2304f258e5ab4d9dd86e3d7b645b3fe5d4af47" "77856f1616f0a4befe693cc89718e4e81ca02186ccd423a70f741f2e3974d10f" "9ce3f9dc04a4a50169c8bc58202bd4107bd3bec3dee04ca0d2747f563fdbf37c" "2383aad6d7a2ab84816102a614217ae2f71346febf758a35c38f540cf5a4f870" "4f3256a77d296e0f96ca6071c61f9de658e8e5e8fbb33a3fb0a25bd3cac1ba95" "05f98c3f10b215b37151685fb42bc108481a59145fd557edf5c4b140902af69b" "e6e3f9539236fc2b9f4c1ca06e47289e3e84011d194edc2fe8db1326f27162e2" "91ae05962e013e0925e56e4b98d87090f48de36876ba9fa939ae760e16aee566" "00087223a3ba61a42feb4bb898e8eb6cbc301e96e8e8d46c50f202b6bb435bc8" "b77b4effef346442f97b12b3b17056e60e7d8122fba4b7d692c7e633b00fef2a" "413627ea61e7aee5429a37a07d893436fa50d90db1c9cad63c3fe880d16ea366" "9de2e8914e2d8bdadad1eb0ca9ba5a1c5bbbfb71b91eaca7996691cd97f0e863" "fe4a68cae5bf268eb4da12eb78d06e40265e46c0e63eb5bf6e3545c4d0fe4cf9" "35ae89ec94b266fe007ec56be07b30aabaf6565d9a59c2e21e5943a9fec58069" "5c2bac01062bc2496baf2fde79cc4ede470b9395af5014991132034dcbfda677" "2df61c2e91799bf9d31fbe5ca4d407ef03669dbc8efd84f8acab83b0bbb63a56" "4d966fc76684e7f95122c877a95e8f6e4fa9d784225a4111cf1ce80969a4498f" "935b7766c7b74d2801be8a0cbd14967d090769e7353fcdf72b1a4d695393fd04" "503683e60ca9efa6d138cccae401269d13aef9e0101fbda20341edc2294c950b" "e55352d8828ed4e056652fa7fd5db47603ee48368fbae500837630a7345fb6b2" "f81e8249778eeeed1dc71c69cc37aab6f68d111b6e770496b2e6c87f4d1d9a05" "1ec13d23f091b5e6fb8621b85fad1ebbc3fb132daf505fd953d27f97ec573d67" "923a4e39d4da77bc40ddc2ba2fceec2c5613392bf32cc06a59e10db55ddd4ebd" "57d6156b7ae19dee1c627bcfcf298f52d271e4ca805b5c37d59906c87e281ce3" "aa4e08348cd327190a188a450d55a0abaf8780cf8d04743d632937b593bba5c9" "50fa2844d84cecfa718f92122e095ecc1243fdf004bb1348e9cee856707c6f3d" "429c077679e0586d1b6a9f22586129bb4e0793e70b414ff93f023fcfa654b08a" "9893c7f1274df4d4df0573da1ee4dfe32f73f71cdf45bba7596a09e6c637d990" "e274c4d17ef47311855ce93dcc34c512bb285e3a01e9b3b1b735e059a865e48d" "59b58e2d0b77f0e8dc305bba18dc0913ae11ebc1ea91165911f5f3bd46910470" "2946f0682172ff16ffe531ce59ea26044f949e8a51b2d4ab14d74e21fa8f2b67" "de4fe3532d51a731d313e588531e32a26f9824e216fff1306ca270487f833045" "096bb91c8fd17ff6f2f51ddaf51897c9710da5486fbbb2d370e3ff3b209ff446" "700f0a38b888fb3fe656b9d8647d71fa99b3684641cf9e02106a3e3a1ca1d87a" "5cbf5345c2af35887f1518c35c9a62409304b20006f2455ef1313507e0552b1f" default)))
22
22
'(custom-theme-directory "~/.emacs.d/blendoit/themes/")
23
23
'(fci-rule-color "#383838")
24
24
'(fill-column 79)
@@ -36,6 +36,7 @@
36
36
("account" "%(binary) -f %(ledger-file) reg %(account)")
37
37
("budget" "%(binary) -f %(ledger-file) budget --exchange USD"))))
38
38
'(line-number-mode nil)
39
Added:
'(menu-bar-mode nil)
39
40
'(message-required-headers (quote ((optional . References) From)))
40
41
'(mixed-pitch-variable-pitch-cursor (quote bar))
41
42
'(nrepl-message-colors
@@ -103,7 +104,7 @@
103
104
'(org-startup-align-all-tables t)
104
105
'(package-selected-packages
105
106
(quote
106
Removed:
(tabbar-ruler tabbar-mode linum-relative dumb-jump csv-mode rainbow-mode org-mouse projectile minimap gnuplot ledger-mode company-mode wombat-theme wombar-theme which-key srefactor-lisp srefactor all-the-icons flycheck ibuffer-sidebar pdf-tools magit rainbow-delimiters smartparens mixed-pitch org-bullets use-package tabbar powerline ivy-hydra flatui-theme evil counsel company benchmark-init)))
107
Added:
(awesome-tab tabbar-ruler tabbar-mode linum-relative dumb-jump csv-mode rainbow-mode org-mouse projectile minimap gnuplot ledger-mode company-mode wombat-theme wombar-theme which-key srefactor-lisp srefactor all-the-icons flycheck ibuffer-sidebar pdf-tools magit rainbow-delimiters smartparens mixed-pitch org-bullets use-package tabbar powerline ivy-hydra flatui-theme evil counsel company benchmark-init)))
107
108
'(pdf-view-midnight-colors (quote ("#DCDCCC" . "#383838")))
108
109
'(save-place-mode t)
109
110
'(send-mail-function (quote smtpmail-send-it))
@@ -132,7 +133,7 @@
132
133
(340 . "#94BFF3")
133
134
(360 . "#DC8CC3"))))
134
135
'(vc-annotate-very-old-color "#DC8CC3")
135
Removed:
'(window-divider-default-places (quote right-only)))
136
Added:
'(window-divider-default-places t))
136
137
(custom-set-faces
137
138
;; custom-set-faces was added by Custom.
138
139
;; If you edit it by hand, you could mess it up, so be careful.
init.el
@@ -9,3 +9,7 @@
9
9
;;; Code:
10
10
11
11
(org-babel-load-file "~/.emacs.d/blendoit/blendoit-init.org")
12
Added:
13
Added:
(provide 'init)
14
Added:
15
Added:
;;; init.el ends here