|
|
@ -1,5 +1,11 @@
|
|
|
|
#+startup: overview
|
|
|
|
#+startup: overview
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Pending task
|
|
|
|
|
|
|
|
- Set dap-mode
|
|
|
|
|
|
|
|
- Add more programming languages to LSP
|
|
|
|
|
|
|
|
- Try =eglot=
|
|
|
|
|
|
|
|
- Fix Latex section
|
|
|
|
|
|
|
|
|
|
|
|
* Famous init files
|
|
|
|
* Famous init files
|
|
|
|
- [[https://github.com/zamansky/dot-emacs][The Big Zemansky]]
|
|
|
|
- [[https://github.com/zamansky/dot-emacs][The Big Zemansky]]
|
|
|
|
- [[https://github.com/patrickt/emacs][Patrick: GOAT init emacs]]
|
|
|
|
- [[https://github.com/patrickt/emacs][Patrick: GOAT init emacs]]
|
|
|
@ -49,6 +55,7 @@ This file:
|
|
|
|
(setq user-full-name "Sergio Alvariño"
|
|
|
|
(setq user-full-name "Sergio Alvariño"
|
|
|
|
user-mail-address "salvari@protonmail.com")
|
|
|
|
user-mail-address "salvari@protonmail.com")
|
|
|
|
#+end_src
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
* Interface tweaks
|
|
|
|
* Interface tweaks
|
|
|
|
** Some GUI optimizations
|
|
|
|
** Some GUI optimizations
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
#+begin_src emacs-lisp
|
|
|
@ -609,6 +616,53 @@ Nice bullets for org-mode
|
|
|
|
)
|
|
|
|
)
|
|
|
|
#+end_src
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
** Fonts for org-mode
|
|
|
|
|
|
|
|
Definimos una función que se encargará de:
|
|
|
|
|
|
|
|
- Establecer la fuente para org-mode (Cantarell)
|
|
|
|
|
|
|
|
- Establecer tamaños escalados para las cabeceras
|
|
|
|
|
|
|
|
- Establecer fuentes de ancho fijo para secciones de código en los ficheros =.org=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
(defun slv/org-font-setup ()
|
|
|
|
|
|
|
|
(dolist (face '((org-level-1 . 1.2)
|
|
|
|
|
|
|
|
(org-level-2 . 1.1)
|
|
|
|
|
|
|
|
(org-level-3 . 1.05)
|
|
|
|
|
|
|
|
(org-level-4 . 1.0)
|
|
|
|
|
|
|
|
(org-level-5 . 1.1)
|
|
|
|
|
|
|
|
(org-level-6 . 1.1)
|
|
|
|
|
|
|
|
(org-level-7 . 1.1)
|
|
|
|
|
|
|
|
(org-level-8 . 1.1)))
|
|
|
|
|
|
|
|
(set-face-attribute (car face) nil :font "Cantarell" :weight 'regular :height (cdr face)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Ensure that anything that should be fixed-pitch in Org files appears that way
|
|
|
|
|
|
|
|
(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
(set-face-attribute 'org-formula nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
(set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch))
|
|
|
|
|
|
|
|
(set-face-attribute 'org-table nil :inherit '(shadow fixed-pitch))
|
|
|
|
|
|
|
|
(set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
|
|
|
|
|
|
|
|
(set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch))
|
|
|
|
|
|
|
|
(set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-face fixed-pitch))
|
|
|
|
|
|
|
|
(set-face-attribute 'org-checkbox nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
(set-face-attribute 'line-number nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
(set-face-attribute 'line-number-current-line nil :inherit 'fixed-pitch)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
** Some additional tweaks for org-mode
|
|
|
|
|
|
|
|
Añadimos algunos detalles a la visualización de org-mode
|
|
|
|
|
|
|
|
- Aumentamos el tamaño de la visualización de código LaTeX renderizado (usa =C-c C-x C-l= para conmutar la visualización)
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
(defun slv/org-tweaks-setup ()
|
|
|
|
|
|
|
|
(plist-put org-format-latex-options :scale 2) ;; Increase size of LaTeX fragment previews
|
|
|
|
|
|
|
|
(setq org-startup-indented t
|
|
|
|
|
|
|
|
org-pretty-entities t
|
|
|
|
|
|
|
|
org-hide-emphasis-markers t
|
|
|
|
|
|
|
|
org-startup-with-inline-images t
|
|
|
|
|
|
|
|
org-image-actual-width '(300))
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
* flycheck
|
|
|
|
* flycheck
|
|
|
|
You *must* use [[https://www.flycheck.org/en/latest/][flycheck]] if you use LSP. (Flymake + LSP is hell)
|
|
|
|
You *must* use [[https://www.flycheck.org/en/latest/][flycheck]] if you use LSP. (Flymake + LSP is hell)
|
|
|
|
Syntax checking for programming languages
|
|
|
|
Syntax checking for programming languages
|
|
|
@ -891,6 +945,41 @@ Usamos =pyenv= para gestionar los /virtualenv/
|
|
|
|
("C-x p e" . pyenv-activate-current-project))
|
|
|
|
("C-x p e" . pyenv-activate-current-project))
|
|
|
|
#+end_src
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Markdown
|
|
|
|
|
|
|
|
- [[https://leanpub.com/markdown-mode/read#intro][Guide to Emacs Markdown mode]]
|
|
|
|
|
|
|
|
- [[https://joostkremers.github.io/pandoc-mode/][Pandoc Mode Doc]]
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
(use-package markdown-mode
|
|
|
|
|
|
|
|
:init (setq markdown-command "multimarkdown")
|
|
|
|
|
|
|
|
:mode (("README\\.md\\'" . gfm-mode)
|
|
|
|
|
|
|
|
("\\.md\\'" . markdown-mode)
|
|
|
|
|
|
|
|
("\\.markdown\\'" . markdown-mode)
|
|
|
|
|
|
|
|
("\\.pdc\\'" . markdown-mode)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
(use-package pandoc-mode
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Docker
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
(use-package dockerfile-mode
|
|
|
|
|
|
|
|
:config
|
|
|
|
|
|
|
|
(add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode))
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
(use-package docker-compose-mode
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* LaTeX
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
;; (use-package tex
|
|
|
|
|
|
|
|
;; :defer t
|
|
|
|
|
|
|
|
;; :ensure auctex
|
|
|
|
|
|
|
|
;; :config
|
|
|
|
|
|
|
|
;; (setq TeX-auto-save t))
|
|
|
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
|
|
* next
|
|
|
|
* next
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
|
|
|
|
|
|
|