aboutsummaryrefslogtreecommitdiff
path: root/spacemacs.el
diff options
context:
space:
mode:
Diffstat (limited to 'spacemacs.el')
-rw-r--r--spacemacs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/spacemacs.el b/spacemacs.el
index 098c847..8895cae 100644
--- a/spacemacs.el
+++ b/spacemacs.el
@@ -612,7 +612,8 @@ This is the place where most of your configurations should be done. Unless it is
(add-hook 'hack-local-variables-hook (lambda ()
(spacemacs/toggle-truncate-lines-off)))
- (dolist (mode-pair '(("\\.json\\.base$" . json-mode)))
+ (dolist (mode-pair '(("\\.tsx?$" . typescript-mode)
+ ("\\.json\\.base$" . json-mode)))
(setq auto-mode-alist (cons mode-pair auto-mode-alist)))
(dolist (path custom-el-files)
@@ -648,7 +649,6 @@ This is the place where most of your configurations should be done. Unless it is
default-truncate-lines nil
magit-diff-refine-hunk t
ispell-program-name "aspell"
- TeX-view-program-selection '((output-pdf "Zathura"))
;; Indentation
typescript-indent-level 2