this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: (Emacs) deno mode and lsp dependencies

+10 -6
+1
home/default.nix
··· 27 27 delta 28 28 zellij 29 29 lazydocker 30 + gccgo 30 31 ]; 31 32 32 33 home.sessionVariables = {
+9 -6
home/emacs/emacs.org
··· 331 331 #+begin_src emacs-lisp 332 332 (setq treesit-language-source-alist 333 333 '((bash "https://github.com/tree-sitter/tree-sitter-bash") 334 - (cmake "https://github.com/uyha/tree-sitter-cmake") 335 334 (css "https://github.com/tree-sitter/tree-sitter-css") 336 335 (elisp "https://github.com/Wilfred/tree-sitter-elisp") 337 336 (go "https://github.com/tree-sitter/tree-sitter-go") 338 337 (html "https://github.com/tree-sitter/tree-sitter-html") 339 - (javascript "https://github.com/tree-sitter/tree-sitter-javascript" "master" "src") 338 + (javascript "https://github.com/tree-sitter/tree-sitter-javascript" "v0.20.3" "src") 340 339 (json "https://github.com/tree-sitter/tree-sitter-json") 341 340 (make "https://github.com/alemuller/tree-sitter-make") 342 341 (markdown "https://github.com/ikatyang/tree-sitter-markdown") 343 342 (python "https://github.com/tree-sitter/tree-sitter-python") 344 343 (toml "https://github.com/tree-sitter/tree-sitter-toml") 345 - (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src") 346 - (typescript "https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src") 344 + (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "tsx/src") 345 + (typescript "https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "typescript/src") 347 346 (elixir "https://github.com/elixir-lang/tree-sitter-elixir") 348 - (heex "https://github.com/phoenixframework/tree-sitter-heex") 349 347 (yaml "https://github.com/ikatyang/tree-sitter-yaml"))) 350 348 351 349 (setq major-mode-remap-alist ··· 392 390 #+begin_src emacs-lisp 393 391 (use-package eglot 394 392 :hook 395 - (typescript-mode . eglot-ensure) 393 + (typescript-ts-mode . eglot-ensure) 396 394 (kotlin-mode . eglot-ensure) 397 395 (elixir-ts-mode . eglot-ensure) 396 + (deno-ts-mode . eglot-ensure) 398 397 :ensure nil) 399 398 #+end_src 400 399 ··· 428 427 :hook (typecript-mode . lsp-deferred)) 429 428 #+end_src 430 429 430 + **** Deno 431 + #+begin_src emacs-lisp 432 + (use-package deno-ts-mode) 433 + #+end_src 431 434 *** Haskell 432 435 #+begin_src emacs-lisp 433 436 (use-package lsp-haskell)