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
#+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
[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
~org~-anized. In the end we use a few, but I plan to phase them out and
replace them with git submodules
* Files and dirs
Move ~Customize~ to a separate file
#+begin_src emacs-lisp
(setq custom-file "~/.emacs.d/custom.el")
(load custom-file 'noerror)
#+end_src
Add relevant dirs to load path [This is somewhat undesirable; I should
uniformize the path-loading business at some point…]
#+begin_src emacs-lisp
@ -49,6 +53,7 @@
"highlight-parentheses.el")))
#+end_src
Put autosave files (ie #foo#) and backup files (ie foo~) in ~/.emacs.d/.
create the autosave dir if necessary, since emacs won't.
#+begin_src emacs-lisp
@ -63,10 +68,11 @@
(load-theme 'lunarized t)
#+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
dealing with bold weight. To avoid flickering one should also set the font
in .Xresources
Use patched terminus font (this overrides the settings in Customize,
but I never could it work otherwise). See the special treatment
later on for dealing with bold weight. To avoid flickering one
should also set the font in .Xresources
#+begin_src emacs-lisp
(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")
@ -2376,6 +2382,7 @@ Silent offset warning
:append)
#+end_src
*** magit-todos
#+begin_src emacs-lisp
(require 'magit-todos)
#+end_src

Loading…
Cancel
Save