this repo has no description
0
fork

Configure Feed

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

:fire: (Emacs) refactor some configurations

+3 -22
+3 -22
home/emacs/emacs.org
··· 4 4 5 5 Here I'm forcing some basic configuration from emacs for my liking 6 6 #+begin_src emacs-lisp 7 - (setq user-mail-address "pedro.correa@zigpay.com.br") 7 + (setq user-mail-address "pedro.correa@gmail.com") 8 8 (setq user-full-name "Pedro Correa") 9 9 10 10 (set-mouse-color "GhostWhite") ··· 423 423 #+end_src 424 424 425 425 ** Languages 426 - *** Web 427 - #+begin_src emacs-lisp 428 - (use-package web-mode 429 - :config 430 - (add-to-list 'auto-mode-alist '("\\.html\\'" . web-mode)) 431 - (add-to-list 'auto-mode-alist '("\\.vue\\'" . web-mode))) 432 - #+end_src 433 - 434 - *** Typescript 435 - #+begin_src emacs-lisp 436 - (use-package typescript-mode 437 - :mode "\\.ts\\'" 438 - :hook (typecript-mode . lsp-deferred)) 439 - #+end_src 440 - 441 - **** Deno 442 - #+begin_src emacs-lisp 443 - (use-package deno-ts-mode) 444 - #+end_src 445 426 *** Haskell 446 427 #+begin_src emacs-lisp 447 428 (use-package lsp-haskell) ··· 547 528 (org-level-6 . 1.1) 548 529 (org-level-7 . 1.1) 549 530 (org-level-8 . 1.1))) 550 - (set-face-attribute (car face) nil :font "Monaspace Krypton" :weight 'regular :height (cdr face))) 531 + (set-face-attribute (car face) nil :font "Departure Mono" :weight 'regular :height (cdr face))) 551 532 552 533 ;; Ensure that anything that should be fixed-pitch in Org files appears that way 553 534 (set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch) ··· 712 693 ** Presentation 713 694 Using org-tree-slide to turn org files into a prensentation 714 695 715 - But first, let's intall hide-mode-line to hide the modeline when presenting 696 + But first, let's install hide-mode-line to hide the modeline when presenting 716 697 #+begin_src emacs-lisp 717 698 (use-package hide-mode-line) 718 699 #+end_src