this repo has no description
0
fork

Configure Feed

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

:fire_up: (Emacs) removed elixir support

-23
-23
home/emacs/emacs.org
··· 389 389 :hook 390 390 (typescript-ts-mode . eglot-ensure) 391 391 (kotlin-mode . eglot-ensure) 392 - (elixir-ts-mode . eglot-ensure) 393 392 (deno-ts-mode . eglot-ensure) 394 393 (gleam-ts-mode . eglot-ensure) 395 394 :ensure nil) ··· 442 441 #+begin_src emacs-lisp 443 442 (use-package nix-mode 444 443 :mode "\\.nix\\'") 445 - #+end_src 446 - 447 - *** Elixir 448 - #+begin_src emacs-lisp 449 - (use-package elixir-ts-mode 450 - :hook 451 - (elixir-ts-mode 452 - . 453 - (lambda () 454 - (push '(">=" . ?\u2265) prettify-symbols-alist) 455 - (push '("<=" . ?\u2264) prettify-symbols-alist) 456 - (push '("!=" . ?\u2260) prettify-symbols-alist) 457 - (push '("==" . ?\u2A75) prettify-symbols-alist) 458 - (push '("=~" . ?\u2245) prettify-symbols-alist) 459 - (push '("<-" . ?\u2190) prettify-symbols-alist) 460 - (push '("->" . ?\u2192) prettify-symbols-alist) 461 - (push '("|>" . ?\u25B7) prettify-symbols-alist))) 462 - (before-save . eglot-format)) 463 - 464 - (use-package ob-elixir) 465 444 #+end_src 466 445 467 446 *** Gleam ··· 665 644 (add-to-list 'org-structure-template-alist '("sql" . "src sql")) 666 645 (add-to-list 'org-structure-template-alist '("nix" . "src nix")) 667 646 (add-to-list 'org-structure-template-alist '("kt" . "src kotlin")) 668 - (add-to-list 'org-structure-template-alist '("ex" . "src elixir")) 669 647 670 648 (org-babel-do-load-languages 671 649 'org-babel-load-languages ··· 673 651 (mermaid . t) 674 652 (kotlin . t) 675 653 (js . t) 676 - (elixir . t) 677 654 (emacs-lisp . t))) 678 655 #+end_src 679 656