about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-01 00:23:56 -0500
committerCase Duckworth2020-11-01 00:23:56 -0500
commita63c85fbe05de8a70788d366e6d3594e521ab69b (patch)
tree8c96cef83d17178a09de7268d18ca5edb334373a /config.org
parentAdd more language modes (diff)
downloademacs-a63c85fbe05de8a70788d366e6d3594e521ab69b.tar.gz
emacs-a63c85fbe05de8a70788d366e6d3594e521ab69b.zip
Edit source in the current window
Diffstat (limited to 'config.org')
-rw-r--r--config.org7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.org b/config.org index 69ebcff..a33223a 100644 --- a/config.org +++ b/config.org
@@ -583,6 +583,10 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
583 ("\\.css?\\'" . web-mode) 583 ("\\.css?\\'" . web-mode)
584 ("\\.js\\'" . web-mode))) 584 ("\\.js\\'" . web-mode)))
585#+END_SRC 585#+END_SRC
586*** SSH config
587#+begin_src emacs-lisp
588 (use-package ssh-config-mode)
589#+end_src
586* Writing 590* Writing
587** Visual fill column 591** Visual fill column
588#+begin_src emacs-lisp 592#+begin_src emacs-lisp
@@ -612,7 +616,8 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
612 (org-hide-emphasis-markers t) 616 (org-hide-emphasis-markers t)
613 (org-fontify-done-headline t) 617 (org-fontify-done-headline t)
614 (org-hide-leading-stars t) 618 (org-hide-leading-stars t)
615 (org-pretty-entities t)) 619 (org-pretty-entities t)
620 (org-src-window-setup 'current-window))
616 621
617 (use-package org-superstar 622 (use-package org-superstar
618 :hook 623 :hook