Add typescript base config.
This commit is contained in:
parent
fb5e2c8455
commit
cfef8c9a4a
@ -402,6 +402,8 @@
|
|||||||
(rust . ("https://github.com/tree-sitter/tree-sitter-rust"))
|
(rust . ("https://github.com/tree-sitter/tree-sitter-rust"))
|
||||||
(sql . ("https://github.com/m-novikov/tree-sitter-sql"))
|
(sql . ("https://github.com/m-novikov/tree-sitter-sql"))
|
||||||
(toml . ("https://github.com/tree-sitter/tree-sitter-toml"))
|
(toml . ("https://github.com/tree-sitter/tree-sitter-toml"))
|
||||||
|
(tsx . ("https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src"))
|
||||||
|
(typescript . ("https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src"))
|
||||||
(zig . ("https://github.com/GrayJack/tree-sitter-zig"))))
|
(zig . ("https://github.com/GrayJack/tree-sitter-zig"))))
|
||||||
(defun nf/treesit-install-all-languages ()
|
(defun nf/treesit-install-all-languages ()
|
||||||
"Install all languages specified by `treesit-language-source-alist'."
|
"Install all languages specified by `treesit-language-source-alist'."
|
||||||
|
@ -14,8 +14,13 @@
|
|||||||
:ensure nil
|
:ensure nil
|
||||||
:mode
|
:mode
|
||||||
("\\.js$" . js-mode)
|
("\\.js$" . js-mode)
|
||||||
|
:init
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.tsx\\'" . tsx-ts-mode))
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-ts-mode))
|
||||||
:hook
|
:hook
|
||||||
(js-mode . eglot-ensure)
|
((js-mode . eglot-ensure)
|
||||||
|
(tsx-ts-mode . eglot-ensure)
|
||||||
|
(typescript-ts-mode . eglot-ensure))
|
||||||
:config
|
:config
|
||||||
(setq js-indent-level 2))
|
(setq js-indent-level 2))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user