Fix indentation

master
Jacopo De Simoi 4 years ago
parent 605cf94338
commit a6a7b71611
  1. 17
      global.org

@ -3,7 +3,9 @@
#+email: jacopods@math.utoronto.ca #+email: jacopods@math.utoronto.ca
#+options: *:t ::t #+options: *:t ::t
* TODO Make indentation uniform * COMMENT About indentation in this file
This file will be indented with ~org-adapt-indentation~ set to t
* TODO Look at tangling at * TODO Look at tangling at
[http://thewanderingcoder.com/2015/02/literate-emacs-configuration/] [http://thewanderingcoder.com/2015/02/literate-emacs-configuration/]
@ -29,12 +31,14 @@
way complicated; I can do everything by hand as soon as it is neatly way complicated; I can do everything by hand as soon as it is neatly
~org~-anized. In the end we use a few, but I plan to phase them out and ~org~-anized. In the end we use a few, but I plan to phase them out and
replace them with git submodules replace them with git submodules
* Files and dirs * Files and dirs
Move ~Customize~ to a separate file Move ~Customize~ to a separate file
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq custom-file "~/.emacs.d/custom.el") (setq custom-file "~/.emacs.d/custom.el")
(load custom-file 'noerror) (load custom-file 'noerror)
#+end_src #+end_src
Add relevant dirs to load path [This is somewhat undesirable; I should Add relevant dirs to load path [This is somewhat undesirable; I should
uniformize the path-loading business at some point…] uniformize the path-loading business at some point…]
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -49,6 +53,7 @@
"highlight-parentheses.el"))) "highlight-parentheses.el")))
#+end_src #+end_src
Put autosave files (ie #foo#) and backup files (ie foo~) in ~/.emacs.d/. Put autosave files (ie #foo#) and backup files (ie foo~) in ~/.emacs.d/.
create the autosave dir if necessary, since emacs won't. create the autosave dir if necessary, since emacs won't.
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -63,10 +68,11 @@
(load-theme 'lunarized t) (load-theme 'lunarized t)
#+end_src #+end_src
Use patched terminus font (this overrides the settings in Customize, but I
never could it to work otherwise). See the special treatment later on for Use patched terminus font (this overrides the settings in Customize,
dealing with bold weight. To avoid flickering one should also set the font but I never could it work otherwise). See the special treatment
in .Xresources later on for dealing with bold weight. To avoid flickering one
should also set the font in .Xresources
#+begin_src emacs-lisp #+begin_src emacs-lisp
(set-face-font 'default "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1") (set-face-font 'default "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1")
(set-face-font 'fixed-pitch "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1") (set-face-font 'fixed-pitch "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1")
@ -2376,6 +2382,7 @@ Silent offset warning
:append) :append)
#+end_src #+end_src
*** magit-todos *** magit-todos
#+begin_src emacs-lisp #+begin_src emacs-lisp
(require 'magit-todos) (require 'magit-todos)
#+end_src #+end_src

Loading…
Cancel
Save