diff options
-rw-r--r-- | init.el | 69 |
1 files changed, 38 insertions, 31 deletions
diff --git a/init.el b/init.el index 9857b51..fdf3543 100644 --- a/init.el +++ b/init.el | |||
@@ -352,7 +352,7 @@ | |||
352 | erc-kill-server-buffer-on-quit t | 352 | erc-kill-server-buffer-on-quit t |
353 | erc-nick "acdw" | 353 | erc-nick "acdw" |
354 | erc-nick-truncate (- erc-fill-static-center 1) | 354 | erc-nick-truncate (- erc-fill-static-center 1) |
355 | erc-prompt (lambda () (acdw-erc/prompt)) | 355 | erc-prompt #'acdw-erc/prompt |
356 | erc-prompt-for-password nil ; use ~/.authinfo | 356 | erc-prompt-for-password nil ; use ~/.authinfo |
357 | erc-rename-buffers t | 357 | erc-rename-buffers t |
358 | erc-server erc-default-server | 358 | erc-server erc-default-server |
@@ -1297,35 +1297,39 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
1297 | (setup (:straight org) | 1297 | (setup (:straight org) |
1298 | (:straight org-contrib) | 1298 | (:straight org-contrib) |
1299 | (require 'acdw-org) ; so I don't clutter up init.el | 1299 | (require 'acdw-org) ; so I don't clutter up init.el |
1300 | (:option org-adapt-indentation nil | 1300 | (:option |
1301 | org-catch-invisible-edits 'smart | 1301 | org-adapt-indentation nil |
1302 | org-clock-clocked-in-display 'mode-line | 1302 | org-catch-invisible-edits 'smart |
1303 | org-clock-string-limit 7 ; gives time and not title | 1303 | org-clock-clocked-in-display 'mode-line |
1304 | org-confirm-babel-evaluate nil | 1304 | org-clock-string-limit 7 ; gives time and not title |
1305 | org-ellipsis " …" | 1305 | org-confirm-babel-evaluate nil |
1306 | org-export-coding-system 'utf-8-unix | 1306 | org-directory "~/org" |
1307 | org-export-headline-levels 8 | 1307 | org-ellipsis " …" |
1308 | org-export-with-section-numbers nil | 1308 | org-export-coding-system 'utf-8-unix |
1309 | org-export-with-smart-quotes t | 1309 | org-export-headline-levels 8 |
1310 | org-export-with-sub-superscripts t | 1310 | org-export-with-section-numbers nil |
1311 | org-export-with-toc nil | 1311 | org-export-with-smart-quotes t |
1312 | org-fontify-done-headline t | 1312 | org-export-with-sub-superscripts t |
1313 | org-fontify-quote-and-verse-blocks t | 1313 | org-export-with-toc nil |
1314 | org-fontify-whole-heading-line t | 1314 | org-fontify-done-headline t |
1315 | org-hide-emphasis-markers t | 1315 | org-fontify-quote-and-verse-blocks t |
1316 | org-html-coding-system 'utf-8-unix | 1316 | org-fontify-whole-heading-line t |
1317 | org-imenu-depth 3 | 1317 | org-hide-emphasis-markers t |
1318 | org-outline-path-complete-in-steps nil | 1318 | org-html-coding-system 'utf-8-unix |
1319 | org-pretty-entities t | 1319 | org-image-actual-width '(300) |
1320 | org-refile-use-outline-path 'file | 1320 | org-imenu-depth 3 |
1321 | org-special-ctrl-a/e t | 1321 | org-outline-path-complete-in-steps nil |
1322 | org-special-ctrl-k t | 1322 | org-pretty-entities t |
1323 | org-src-fontify-natively t | 1323 | org-refile-use-outline-path 'file |
1324 | org-src-tab-acts-natively t | 1324 | org-special-ctrl-a/e t |
1325 | org-src-window-setup 'current-window | 1325 | org-special-ctrl-k t |
1326 | org-startup-truncated nil | 1326 | org-src-fontify-natively t |
1327 | org-tags-column 0 ; (- 0 fill-column -3) | 1327 | org-src-tab-acts-natively t |
1328 | org-directory "~/org") | 1328 | org-src-window-setup 'current-window |
1329 | org-startup-truncated nil | ||
1330 | org-startup-with-inline-images t | ||
1331 | org-tags-column 0 ; (- 0 fill-column -3) | ||
1332 | ) | ||
1329 | 1333 | ||
1330 | (:bind "RET" acdw-org/return-dwim | 1334 | (:bind "RET" acdw-org/return-dwim |
1331 | "<S-return>" acdw-org/org-table-copy-down | 1335 | "<S-return>" acdw-org/org-table-copy-down |
@@ -1344,7 +1348,10 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
1344 | acdw/org-fix-lines-before-save) | 1348 | acdw/org-fix-lines-before-save) |
1345 | 1349 | ||
1346 | (advice-add 'org-delete-backward-char | 1350 | (advice-add 'org-delete-backward-char |
1347 | :override #'acdw-org/delete-backward-char)) | 1351 | :override #'acdw-org/delete-backward-char) |
1352 | |||
1353 | (setup (:straight org-appear) | ||
1354 | (:hook-into org-mode))) | ||
1348 | 1355 | ||
1349 | (setup (:straight paredit) | 1356 | (setup (:straight paredit) |
1350 | 1357 | ||