about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-02-24 17:40:56 -0600
committerCase Duckworth2021-02-24 17:40:56 -0600
commit689cfffcfe413df26da76f4ff32c99e1560a12d1 (patch)
tree9ab4e015dce9d8fa257542bba9e9499156460540 /config.org
parentAdd shit, apparently UNIX line endings are being stupid (diff)
downloademacs-689cfffcfe413df26da76f4ff32c99e1560a12d1.tar.gz
emacs-689cfffcfe413df26da76f4ff32c99e1560a12d1.zip
Whitespace
Diffstat (limited to 'config.org')
-rw-r--r--config.org26
1 files changed, 13 insertions, 13 deletions
diff --git a/config.org b/config.org index 5479ab4..3b0cb9d 100644 --- a/config.org +++ b/config.org
@@ -134,7 +134,7 @@ and have made a custom fringe bitmap.
134 #b01100000 134 #b01100000
135 #b00110000 135 #b00110000
136 #b00011000]) 136 #b00011000])
137 137
138 (define-fringe-bitmap 'right-curly-arrow 138 (define-fringe-bitmap 'right-curly-arrow
139 [#b00011000 139 [#b00011000
140 #b00110000 140 #b00110000
@@ -1303,9 +1303,9 @@ that's the only time I accidentally call it, anyway.
1303 1303
13041. Enable =auto-fill-mode= with text modes. 13041. Enable =auto-fill-mode= with text modes.
1305 1305
1306 #+begin_src emacs-lisp :noweb-ref hooks 1306#+begin_src emacs-lisp :noweb-ref hooks
1307 (add-hook 'text-mode-hook #'auto-fill-mode) 1307 (add-hook 'text-mode-hook #'auto-fill-mode)
1308 #+end_src 1308#+end_src
1309 1309
13102. /Just/ in case ... let's "fix" =visual-line-mode= if we're in =org-mode=. 13102. /Just/ in case ... let's "fix" =visual-line-mode= if we're in =org-mode=.
1311 1311
@@ -1354,7 +1354,7 @@ This has to be done /before/ loading the package. It's included in
1354 (global-set-key (vector margin event) #'mwheel-scroll)))) 1354 (global-set-key (vector margin event) #'mwheel-scroll))))
1355#+END_SRC 1355#+END_SRC
1356 1356
1357**** Then: =visual-fill-column= :package: 1357**** Then: =visual-fill-column= :package:
1358 1358
1359In reading-intensive views, this mode keeps the text from getting too 1359In reading-intensive views, this mode keeps the text from getting too
1360wide. 1360wide.
@@ -2469,7 +2469,7 @@ from [[https://github.com/KaratasFurkan/.emacs.d#org-1][Furkan Karataş]].
2469 '(("^ *\\([+]\\) " 2469 '(("^ *\\([+]\\) "
2470 (0 (prog1 () 2470 (0 (prog1 ()
2471 (compose-region (match-beginning 1) (match-end 1) "◦")))))) 2471 (compose-region (match-beginning 1) (match-end 1) "◦"))))))
2472 2472
2473 (defface org-checkbox-done-text 2473 (defface org-checkbox-done-text
2474 '((t (:inherit 'font-lock-comment-face :slant normal))) 2474 '((t (:inherit 'font-lock-comment-face :slant normal)))
2475 "Face for the text part of a checked org-mode checkbox." 2475 "Face for the text part of a checked org-mode checkbox."
@@ -3172,15 +3172,15 @@ run =runemacs.exe=.
3172*This is the main shortcut for running Emacs.* 3172*This is the main shortcut for running Emacs.*
3173 3173
3174#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs.cmd" "") 3174#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs.cmd" "")
3175<<w32-bat-common>> 3175 <<w32-bat-common>>
3176start "emacs" "%EMACSC%" -n -c -a "%EMACS%" %* 3176 start "emacs" "%EMACSC%" -n -c -a "%EMACS%" %*
3177#+end_src 3177#+end_src
3178 3178
3179**** Emacs Daemon 3179**** Emacs Daemon
3180 3180
3181#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Daemon.cmd" "") 3181#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Daemon.cmd" "")
3182<<w32-bat-common>> 3182 <<w32-bat-common>>
3183start "emacs-daemon" %EMACS% --daemon 3183 start "emacs-daemon" %EMACS% --daemon
3184#+end_src 3184#+end_src
3185 3185
3186**** Emacs Safe Start 3186**** Emacs Safe Start
@@ -3188,8 +3188,8 @@ start "emacs-daemon" %EMACS% --daemon
3188This runs Emacs with the factory settings. 3188This runs Emacs with the factory settings.
3189 3189
3190#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Safe Start.cmd" "") 3190#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Safe Start.cmd" "")
3191<<w32-bat-common>> 3191 <<w32-bat-common>>
3192start "emacs-safe" "%EMACS%" -Q %* 3192 start "emacs-safe" "%EMACS%" -Q %*
3193#+end_src 3193#+end_src
3194 3194
3195**** Emacs Debug 3195**** Emacs Debug
@@ -3197,8 +3197,8 @@ start "emacs-safe" "%EMACS%" -Q %*
3197This runs Emacs with the =--debug-init= option enabled. 3197This runs Emacs with the =--debug-init= option enabled.
3198 3198
3199#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Debug.cmd" "") 3199#+begin_src bat :tangle (if (eq system-type 'windows-nt) "~/Applications/cmd/Emacs Debug.cmd" "")
3200<<w32-bat-common>> 3200 <<w32-bat-common>>
3201start "emacs-debug" "%EMACS%" --debug-init %* 3201 start "emacs-debug" "%EMACS%" --debug-init %*
3202#+end_src 3202#+end_src
3203 3203
3204*** Other configuration files 3204*** Other configuration files