aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.org7
1 files changed, 4 insertions, 3 deletions
diff --git a/config.org b/config.org
index de4a8ba..39653ad 100644
--- a/config.org
+++ b/config.org
@@ -67,11 +67,12 @@ pasting, etc. This mimics the behavior of other editors.
67Trim trailing whitespace in my all of my files. If it turns out there is a 67Trim trailing whitespace in my all of my files. If it turns out there is a
68filetype that should include trailing whitespace I will whitelist it. 68filetype that should include trailing whitespace I will whitelist it.
69 69
70#+BEGIN_SRC emacs-list 70#+BEGIN_SRC emacs-lisp
71(add-hook 'write-file-hooks 71(add-hook 'write-file-hooks
72 '(lambda () 72 '(lambda ()
73 (delete-trailing-whitespace))) 73 (delete-trailing-whitespace)))
74#+END_SRC 74#+END_SRC
75
75*** Look and Feel 76*** Look and Feel
76#+BEGIN_SRC emacs-lisp 77#+BEGIN_SRC emacs-lisp
77;; Hide the toolbar 78;; Hide the toolbar
@@ -289,7 +290,7 @@ Styles source code blocks when exporting an org file to HTML
289 ("M-x" . counsel-M-x) 290 ("M-x" . counsel-M-x)
290 ("C-x C-f" . counsel-find-file)) 291 ("C-x C-f" . counsel-find-file))
291 :init 292 :init
292 (setq 293 (setq
293 ;; Remove the ^ prefix 294 ;; Remove the ^ prefix
294 ivy-initial-inputs-alist nil 295 ivy-initial-inputs-alist nil
295 ;; Display recently opened files when switching buffers 296 ;; Display recently opened files when switching buffers
@@ -302,7 +303,7 @@ Styles source code blocks when exporting an org file to HTML
302 (ivy-mode 1)) 303 (ivy-mode 1))
303#+END_SRC 304#+END_SRC
304** persp-mode 305** persp-mode
305[[https://github.com/Bad-ptr/persp-mode.el][persp-mode]] enables "workspaces" within Emacs. This is similar to how a window 306[[https://github.com/Bad-ptr/persp-mode.el][persp-mode]] enables "workspaces" within Emacs. This is similar to how a window
306manager might have several desktops 307manager might have several desktops
307 308
308#+BEGIN_SRC emacs-lisp 309#+BEGIN_SRC emacs-lisp