emacs: fix indentation in org-mode

master
an 2020-01-26 10:15:01 -05:00
parent 8eaae82679
commit 7e0e83a469
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,9 @@
(variable-pitch-mode)
(org-bullets-mode)
(flyspell-mode)
(setq-local indent-tabs-mode nil))
(setq-local indent-tabs-mode nil)
(setq-local standard-indent 2)
(setq-local tab-width 2))
(defun agw-ranger-mode ()
(local-set-key (kbd "C-c t") #'agw-touch))

View File

@ -43,6 +43,7 @@
'(org-hide-emphasis-markers t)
'(org-hide-leading-stars t)
'(org-hide-macro-markers t)
'(org-indent-indentation-per-level 2)
'(org-link-frame-setup
(quote
((vm . vm-visit-folder)
@ -50,6 +51,7 @@
(gnus . gnus)
(file . find-file)
(wl . wl))))
'(org-list-indent-offset 2)
'(org-log-done (quote note))
'(org-pretty-entities t)
'(org-return-follows-link t)