this repo has no description
0
fork

Configure Feed

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

:fire: (Emacs) removing elixir treesitter

+2 -3
+2 -3
home/emacs/emacs.org
··· 13 13 Activating ~hs-minor-mode~ on `prog-mode~ so I can fold functions based on indentation 14 14 #+begin_src emacs-lisp 15 15 (add-hook 'prog-mode-hook #'(lambda () (hs-minor-mode t))) 16 + (setq global-hl-line-mode t) 17 + (setq hl-line-mode t) 16 18 #+end_src 17 19 18 20 * Package 19 21 20 22 #+begin_src emacs-lisp 21 - 22 23 ;; Initialize package sources 23 24 (require 'package) 24 25 ··· 353 354 (toml "https://github.com/tree-sitter/tree-sitter-toml") 354 355 (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "tsx/src") 355 356 (typescript "https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "typescript/src") 356 - (elixir "https://github.com/elixir-lang/tree-sitter-elixir") 357 357 (yaml "https://github.com/ikatyang/tree-sitter-yaml"))) 358 358 359 359 (setq major-mode-remap-alist ··· 363 363 (typescript-mode . typescript-ts-mode) 364 364 (json-mode . json-ts-mode) 365 365 (css-mode . css-ts-mode) 366 - (elixir-mode . elixir-ts-mode) 367 366 (go-mode . go-ts-mode) 368 367 (python-mode . python-ts-mode))) 369 368 #+end_src