Bubble up search-whitespace

master
Jacopo De Simoi 9 years ago
parent 124bcee7ff
commit 60eae1ca39
  1. 7
      global.org

@ -229,7 +229,10 @@
(setq-default show-trailing-whitespace t) (setq-default show-trailing-whitespace t)
(add-hook 'before-save-hook 'delete-trailing-whitespace) (add-hook 'before-save-hook 'delete-trailing-whitespace)
#+END_SRC #+END_SRC
Define what is whitespace during a search
#+BEGIN_SRC emacs-lisp
(setq search-whitespace-regexp "[ \t\r\n]+")
#+END_SRC
Tabs are evil; get rid of them Tabs are evil; get rid of them
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq c-basic-offset 4) (setq c-basic-offset 4)
@ -352,8 +355,6 @@
#+END_SRC #+END_SRC
* Leftovers * Leftovers
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq search-whitespace-regexp "[ \t\r\n]+")
;; * include other files ;; * include other files
(load "init-latex.el") (load "init-latex.el")
(load "init-org.el") (load "init-org.el")

Loading…
Cancel
Save