Add typescript base config.

This commit is contained in:
kj 2025-02-07 17:40:49 -03:00
parent fb5e2c8455
commit cfef8c9a4a
2 changed files with 8 additions and 1 deletions

View File

@ -402,6 +402,8 @@
(rust . ("https://github.com/tree-sitter/tree-sitter-rust"))
(sql . ("https://github.com/m-novikov/tree-sitter-sql"))
(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"))))
(defun nf/treesit-install-all-languages ()
"Install all languages specified by `treesit-language-source-alist'."

View File

@ -14,8 +14,13 @@
:ensure nil
: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
(js-mode . eglot-ensure)
((js-mode . eglot-ensure)
(tsx-ts-mode . eglot-ensure)
(typescript-ts-mode . eglot-ensure))
:config
(setq js-indent-level 2))