Change some indent: tabs to spaces.

This commit is contained in:
Jeff Lance 2018-08-08 11:34:12 +02:00
parent 31258ffe12
commit 5ff01eab81

View File

@ -76,7 +76,7 @@
;; ;;
;; Splash screen ;; Splash screen
(setq inhibit-splash-screen t (setq inhibit-splash-screen t
initial-scratch-message nil initial-scratch-message nil
initial-major-mode 'org-mode) initial-major-mode 'org-mode)
;; Scroll bar, menu bar, tool bar ;; Scroll bar, menu bar, tool bar
@ -99,7 +99,7 @@
;; Column and line numbers ;; Column and line numbers
(setq column-number-mode t (setq column-number-mode t
line-number-mode t) line-number-mode t)
;; Indentation ;; Indentation
; no tabs for indentation but two spaces. ; no tabs for indentation but two spaces.
@ -276,7 +276,7 @@
:ensure t :ensure t
:commands (markdown-mode gfm-mode) :commands (markdown-mode gfm-mode)
:mode (("README\\.md\\'" . gfm-mode) :mode (("README\\.md\\'" . gfm-mode)
("\\.md\\'" . markdown-mode) ("\\.md\\'" . markdown-mode)
("\\.markdown\\'" . markdown-mode)) ("\\.markdown\\'" . markdown-mode))
:init :init
(setq markdown-command "multimarkdown") (setq markdown-command "multimarkdown")
@ -323,7 +323,7 @@
'((:startgroup . nil) '((:startgroup . nil)
("@TRAVAIL" . ?t) ("@TRAVAIL" . ?t)
("@MAISON" . ?m) ("@MAISON" . ?m)
(:endgroup . nil) (:endgroup . nil)
(:startgroup . nil) (:startgroup . nil)
("ADMINISTRATIF" . ?a) ("ADMINISTRATIF" . ?a)
("COURS" . ?c) ("COURS" . ?c)
@ -354,10 +354,10 @@
'("devoir" '("devoir"
"\\documentclass{cours_devoir}" "\\documentclass{cours_devoir}"
("\\section{%s}" . "\\section*{%s}") ("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
(add-to-list 'org-latex-classes (add-to-list 'org-latex-classes
'("cours_prof" '("cours_prof"
"\\documentclass{cours_prof}")) "\\documentclass{cours_prof}"))