spacemacs/layers/+lang/typescript/config.el

24 lines
643 B
EmacsLisp
Raw Normal View History

;;; config.el --- Typescript Layer Configuration File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
2016-10-13 06:49:13 +00:00
(spacemacs|defvar-company-backends typescript-mode)
(defvar typescript-fmt-on-save nil
"Run formatter on buffer save.")
2016-05-02 09:11:16 +00:00
(defvar typescript-fmt-tool 'tide
"The name of the tool to be used
for TypeScript source code formatting.
Currently avaliable 'tide (default)
and 'typescript-formatter .")
(spacemacs|define-jump-handlers typescript-mode)