summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-05-17 07:07:37 -0400
committermattkae <mattkae@protonmail.com>2022-05-17 07:07:37 -0400
commitbecff06c71d277647eda4378203d03ab36e141eb (patch)
treea1f73bba3676f34e0faf76764f5de963321f5576 /init.el
parent3f4a0d5370ae6c34afe180df96add3b8522f4af1 (diff)
Evil mode and latex support
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/init.el b/init.el
index 265654c..b756fe1 100644
--- a/init.el
+++ b/init.el
@@ -23,6 +23,10 @@
;; Theme
(load-theme 'vs-light t)
(set-face-attribute 'region nil :background "#ffffcd")
+(setq debug-on-error t)
+
+(require 'evil)
+(evil-mode 1)
(require 'general)
(setup-general)
@@ -39,6 +43,8 @@
(require 'js-mode-custom)
(setup-js)
+(require 'latex-custom)
+(setup-latex)
(custom-set-variables
;; custom-set-variables was added by Custom.
@@ -50,10 +56,10 @@
'(org-agenda-files (list org-directory))
'(org-directory "~/Documents/org")
'(package-selected-packages
- '(js2-highlight-vars ac-js2 js2-refactor js2-mode flycheck-irony company-irony all-the-icons req-package projectile irony org)))
+ '(auctex evil js2-highlight-vars ac-js2 js2-refactor js2-mode flycheck-irony company-irony all-the-icons req-package projectile irony org)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- )
+)