evil mode fix and orgmode customization
This commit is contained in:
parent
60a5bd80b7
commit
22061cbd2b
1 changed files with 7 additions and 8 deletions
|
@ -78,7 +78,8 @@
|
||||||
(setq evil-want-integration t
|
(setq evil-want-integration t
|
||||||
evil-want-keybinding nil
|
evil-want-keybinding nil
|
||||||
evil-vsplit-window-right t
|
evil-vsplit-window-right t
|
||||||
evil-split-window-below t)
|
evil-split-window-below t
|
||||||
|
evil-undo-system 'undo-redo)
|
||||||
:config
|
:config
|
||||||
(evil-mode 1))
|
(evil-mode 1))
|
||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
|
@ -92,14 +93,12 @@
|
||||||
(add-hook 'org-mode-hook 'org-indent-mode)
|
(add-hook 'org-mode-hook 'org-indent-mode)
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
'(org-level-1 ((t (:inherit outline-1 :height 1.7))))
|
'(org-level-1 ((t (:inherit outline-1 :height 1.7))))
|
||||||
'(org-level-2 ((t (:inherit outline-2 :height 1.6))))
|
'(org-level-2 ((t (:inherit outline-2 :height 1.5))))
|
||||||
'(org-level-3 ((t (:inherit outline-3 :height 1.5))))
|
'(org-level-3 ((t (:inherit outline-3 :height 1.3))))
|
||||||
'(org-level-4 ((t (:inherit outline-4 :height 1.4))))
|
'(org-level-4 ((t (:inherit outline-4 :height 1.1)))))
|
||||||
'(org-level-5 ((t (:inherit outline-5 :height 1.3))))
|
|
||||||
'(org-level-6 ((t (:inherit outline-5 :height 1.2))))
|
|
||||||
'(org-level-7 ((t (:inherit outline-5 :height 1.1)))))
|
|
||||||
(setq org-highlight-latex-and-related '(latex script entities))
|
|
||||||
(setq org-format-latex-options (plist-put org-format-latex-options :scale 1.35))
|
(setq org-format-latex-options (plist-put org-format-latex-options :scale 1.35))
|
||||||
|
(setq org-latex-toc-command "\\clearpage \\tableofcontents \\clearpage")
|
||||||
|
(setq org-highlight-latex-and-related '(latex script entities))
|
||||||
(setq org-startup-with-latex-preview t)
|
(setq org-startup-with-latex-preview t)
|
||||||
|
|
||||||
;; Keybinds
|
;; Keybinds
|
||||||
|
|
Loading…
Reference in a new issue