[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
(eq major-mode 'org-mode)
Changed files
custom.el
@@ -35,6 +35,7 @@
35
35
'(org-log-done 'time)
36
36
'(org-log-done-with-time nil)
37
37
'(org-startup-align-all-tables t)
38
Added:
'(org-table-convert-region-max-lines 3000)
38
39
'(org-tags-column -66)
39
40
'(package-selected-packages
40
41
'(erc-image erc-hl-nicks treemacs moody olivetti semantic-refactor org-pretty-table mode-icons dashboard undo-tree hungry-delete smooth-scroll smooth-scrolling delight yasnippet-snippets yasnippet org-sticky-header 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))
smart-documents.org
@@ -422,7 +422,7 @@
422
422
The following bindings lead to more natural window & frame exit behaviors.
423
423
424
424
#+NAME: close-window-or-previous-buffer
425
Removed:
#+BEGIN_SRC emacs-lisp :tangle no
425
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
426
426
(global-set-key (kbd "C-w")
427
427
(lambda ()
428
428
"Delete window; if sole window, previous buffer."
@@ -823,7 +823,7 @@
823
823
"#python")))
824
824
(erc-autojoin-timing 'ident) ; Autojoin after NickServ identification.
825
825
(erc-fill-function 'erc-fill-static)
826
Removed:
(erc-fill-static-center 20)
826
Added:
(erc-fill-static-center 16)
827
827
;; (erc-hide-list '("JOIN" "PART" "QUIT"))
828
828
(erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
829
829
(erc-lurker-threshold-time (* 3600 4)) ; Four hours
@@ -1429,7 +1429,7 @@
1429
1429
(propertize "⇲ " 'mouse-face 'highlight
1430
1430
'face 'org-special-keyword
1431
1431
'help-echo "Minimize this window.")))
1432
Removed:
(if (string-equal major-mode "org-mode")
1432
Added:
(if (eq major-mode 'org-mode)
1433
1433
(org-property-value "TITLE")
1434
1434
(buffer-name))))))
1435
1435
@@ -1451,7 +1451,7 @@
1451
1451
(propertize "⇲ " 'mouse-face 'highlight
1452
1452
'face 'org-special-keyword
1453
1453
'help-echo "Minimize this window.")))
1454
Removed:
(if (string-equal major-mode "org-mode")
1454
Added:
(if (eq major-mode 'org-mode)
1455
1455
(org-property-value "TITLE")
1456
1456
(buffer-name))))))
1457
1457