420 lines
13 KiB
EmacsLisp
420 lines
13 KiB
EmacsLisp
;;; base-extensions.el --- Extenciones/paquetes instalados y su configuración
|
|
|
|
;; Author: kj <webmaster@outcontrol.net>
|
|
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
;; use-package - No necesita presentación
|
|
(use-package use-package
|
|
:config
|
|
(setq use-package-always-ensure t) ; auto-instalar extenciones que no lo estén
|
|
)
|
|
|
|
;; Auto-actualizar los paquetes
|
|
(use-package auto-package-update
|
|
:custom
|
|
(auto-package-update-interval 7)
|
|
(auto-package-update-prompt-before-update t)
|
|
(auto-package-update-hide-results t)
|
|
:config
|
|
(auto-package-update-maybe)
|
|
(auto-package-update-at-time "06:00")
|
|
:init
|
|
(setq
|
|
auto-package-update-last-update-day-filename
|
|
(expand-file-name ".last-package-update-day" private-dir)))
|
|
|
|
;; Iconos principalmente para ser usados por neotree
|
|
(use-package all-the-icons :defer t)
|
|
|
|
;; Terminal
|
|
(use-package vterm :ensure t :defer t)
|
|
|
|
;; Multiple vterm
|
|
(use-package multi-vterm :ensure t :defer t)
|
|
|
|
;; Highlight en los números.
|
|
(use-package highlight-numbers
|
|
:defer t
|
|
:ensure t
|
|
:hook
|
|
(prog-mode . highlight-numbers-mode))
|
|
|
|
;; Mover líneas o regiones
|
|
(use-package drag-stuff
|
|
:config
|
|
(drag-stuff-global-mode 1)
|
|
(drag-stuff-define-keys))
|
|
|
|
;; Recentf - Guarda registro de los archivos abiertos recientemente
|
|
(use-package recentf
|
|
:config
|
|
(setq recentf-save-file
|
|
(recentf-expand-file-name (concat temp-dir "/recentf")))
|
|
(recentf-mode 1))
|
|
|
|
|
|
;; Guardar la posición del cursor en un archivo para volver allí cuando se lo vuelva a abrir.
|
|
(use-package saveplace
|
|
:config
|
|
(save-place-mode 1)
|
|
(setq save-place-file (locate-user-emacs-file (concat temp-dir "/places"))))
|
|
|
|
;; Emmet - Una ayuda para escribir HTML rápidamente (escribre doc, luego preciona C-j y lo entenderás)
|
|
(use-package emmet-mode
|
|
:config
|
|
(add-hook 'sgml-mode-hook 'emmet-mode) ;; Auto-start on any markup modes
|
|
(add-hook 'html-mode-hook 'emmet-mode)
|
|
(add-hook 'css-mode-hook 'emmet-mode)
|
|
)
|
|
|
|
;; Modo markdown
|
|
(use-package markdown-mode :defer t)
|
|
|
|
;; Git Gutter - Marca a la izq. si una linea ha sido agregada, editada o eliminada desde el último commit.
|
|
(use-package git-gutter
|
|
:config
|
|
(global-git-gutter-mode +1) ; Habilitar git gutter de manera global
|
|
)
|
|
|
|
;; Mejorando el scroll
|
|
(use-package smooth-scrolling
|
|
:config
|
|
(smooth-scrolling-mode 1) ; Cambia el salto de líneas cuando el cursor llega al final.
|
|
(setq mouse-wheel-scroll-amount
|
|
'(8 ((shift) . 1) ((control) . nil))) ; Cambia el scroll a 8 líneas a la vez, 1 cuando se preciona SHIFT y saltos de página cuando presionas CTRL
|
|
(setq mouse-wheel-progressive-speed nil) ; Deshabilita la velocidad progresiva del scroll (mientras más scroll haces, mas rápido va)
|
|
)
|
|
|
|
;; Esa línea bonita de abajo del editor que dice cosas xD
|
|
(use-package telephone-line
|
|
:custom
|
|
(setq telephone-line-lhs
|
|
'((accent . (telephone-line-vc-segment
|
|
telephone-line-erc-modified-channels-segment
|
|
telephone-line-process-segment))
|
|
(nil . (telephone-line-buffer-segment))))
|
|
|
|
(setq telephone-line-rhs
|
|
'((nil . (telephone-line-misc-info-segment))
|
|
(accent . (telephone-line-major-mode-segment))
|
|
(nil . (telephone-line-airline-position-segment))))
|
|
(telephone-line-mode t)
|
|
)
|
|
|
|
;; Code Folding
|
|
(use-package origami
|
|
:defer t
|
|
:config
|
|
(global-origami-mode))
|
|
|
|
;; Automcompletado
|
|
(use-package company
|
|
:defer t
|
|
:bind (:map company-active-map
|
|
("<tab>" . company-indent-or-complete-common)) ; autocompletar con tab como se haría en bash-competition en la terminal de linux
|
|
(:map company-active-map
|
|
("<escape>" . company-abort)) ; cerrar las sugerencias de autocompletado precionando escape.
|
|
:config
|
|
(global-company-mode)
|
|
(setq company-dabbrev-downcase nil) ; autocompletado case-sensitive.
|
|
(setq company-idle-delay 0) ; mostrar autocompletado lo más rápido posible
|
|
(setq company-minimum-prefix-length 1) ; mostrar autocompletado desde que se coloca la primera letra.
|
|
(setq company-backends '((company-files :with company-yasnippet)
|
|
(company-capf :with company-yasnippet)
|
|
(company-dabbrev-code company-gtags company-etags company-keywords :with company-yasnippet)
|
|
(company-dabbrev :with company-yasnippet)))
|
|
)
|
|
|
|
;; Poner la info acerca del autocompletado del autocompletado mas rápido
|
|
(use-package company-quickhelp
|
|
:defer t
|
|
:ensure t
|
|
:custom
|
|
(company-quickhelp-delay 2)
|
|
(company-quickhelp-mode))
|
|
|
|
;; Hacer que el autocompletado se vea más bonito con íconos
|
|
(use-package company-box
|
|
:defer t
|
|
:hook (company-mode . company-box-mode))
|
|
|
|
;; Usar autocompletado con ctags y company
|
|
(use-package company-ctags
|
|
:config
|
|
(add-to-list 'company-backends '(company-ctags))
|
|
)
|
|
|
|
;; Snippets
|
|
(use-package yasnippet
|
|
:defer t
|
|
:ensure t
|
|
:custom
|
|
(yas-prompt-functions '(yas-completing-prompt))
|
|
:config
|
|
(yas-reload-all)
|
|
:hook
|
|
((prog-mode feature-mode) . yas-minor-mode))
|
|
|
|
;; Restaurar el estado de los frames
|
|
(use-package winner
|
|
:init
|
|
(winner-mode 1))
|
|
|
|
(use-package lsp-mode
|
|
:defer t
|
|
:hook (js-mode . lsp-deferred)
|
|
:custom
|
|
(lsp-headerline-breadcrumb-enable nil))
|
|
|
|
(use-package lsp-ui)
|
|
|
|
;; Revisar sintaxis en vivo
|
|
(use-package flycheck
|
|
;; :diminish flycheck-mode
|
|
:defer t
|
|
:hook (after-init . global-flycheck-mode) ; Habilitar flycheck en todos los modos
|
|
)
|
|
|
|
;; Mostrar los errores de flycheck en un pop up
|
|
(use-package flycheck-popup-tip
|
|
:defer t
|
|
:hook (flycheck-mode . flycheck-popup-tip-mode))
|
|
|
|
;; Un bonito y sencillo panel de inicio
|
|
(use-package dashboard
|
|
:config
|
|
(setq dashboard-set-file-icons t)
|
|
(setq dashboard-startup-banner
|
|
(expand-file-name "duck-small.png" user-emacs-directory))
|
|
(setq dashboard-items '(
|
|
;;(recents . 5)
|
|
;;(projects . 5)
|
|
))
|
|
(dashboard-setup-startup-hook)
|
|
)
|
|
|
|
;; Autocompletado para shell scripting.
|
|
(use-package company-shell
|
|
:defer t
|
|
:config
|
|
(add-to-list 'company-backends '(company-shell company-shell-env company-fish-shell))
|
|
)
|
|
|
|
;; Autocompletado para el minibuffer (counsel e ivy)
|
|
(use-package counsel
|
|
:bind
|
|
("M-x" . counsel-M-x)
|
|
("C-x C-m" . counsel-M-x)
|
|
("C-x C-f" . counsel-find-file)
|
|
("C-x c k" . counsel-yank-pop))
|
|
|
|
(use-package projectile
|
|
:diminish projectile-mode
|
|
:config
|
|
(projectile-mode)
|
|
:custom ((projectile-completion-system 'ivy))
|
|
:bind-keymap
|
|
("C-c p" . projectile-command-map)
|
|
:init
|
|
;; Rutas de archivos temporales.
|
|
(setq projectile-cache-file (expand-file-name "projectile.cache" temp-dir))
|
|
(setq projectile-known-projects-file (expand-file-name
|
|
"projectile-bookmarks.eld" temp-dir))
|
|
;; Carpetas donde tienes tus proyectos (deben tener un archivo .projectile o un repro git iniciado).
|
|
(when (file-directory-p "~/Proyectos")
|
|
(setq projectile-project-search-path '("~/Proyectos")))
|
|
(when (file-directory-p "~/Docker/Nginx")
|
|
(setq projectile-project-search-path (append
|
|
projectile-project-search-path
|
|
'("~/Docker/Nginx"))))
|
|
(when (file-directory-p "~/Docker/Nginx2")
|
|
(setq projectile-project-search-path (append
|
|
projectile-project-search-path
|
|
'("~/Docker/Nginx2"))))
|
|
(when (file-directory-p "~/Docker/NginxTwitch")
|
|
(setq projectile-project-search-path (append
|
|
projectile-project-search-path
|
|
'("~/Docker/NginxTwitch"))))
|
|
(setq projectile-switch-project-action #'projectile-dired) ; Usar dired cuando se elija un proyecto.
|
|
|
|
;; Cambiar el título de la ventana de emacs
|
|
(setq frame-title-format
|
|
'(
|
|
(:eval
|
|
(let ((project-name (projectile-project-name)))
|
|
(unless (string= "-" project-name)
|
|
(format "[%s] " project-name))))
|
|
"%b"
|
|
" - Emacs")
|
|
)
|
|
)
|
|
|
|
;; Autocompletado de proyectos en counsel (projectile)
|
|
(use-package counsel-projectile
|
|
:config
|
|
(global-set-key (kbd "C-x p") 'counsel-projectile)
|
|
(counsel-projectile-mode))
|
|
|
|
;; Mostrar info del panel inferior de otra manera
|
|
(use-package ivy
|
|
:defer t
|
|
:bind
|
|
("C-x s" . swiper)
|
|
("C-x C-r" . ivy-resume)
|
|
("C-x b" . ivy-switch-buffer)
|
|
:config
|
|
(ivy-mode 1)
|
|
(setq ivy-use-virtual-buffers nil)
|
|
(define-key ivy-minibuffer-map (kbd "TAB") 'ivy-partial)
|
|
(define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
|
|
(define-key ivy-minibuffer-map (kbd "<escape>") 'minibuffer-keyboard-quit)
|
|
)
|
|
|
|
;; Iconos en Ivy (allthe icons)
|
|
(use-package all-the-icons-ivy-rich
|
|
:ensure t
|
|
:init (all-the-icons-ivy-rich-mode 1)
|
|
:config
|
|
(setq all-the-icons-ivy-rich-color-icon t))
|
|
|
|
(use-package ivy-rich
|
|
:ensure t
|
|
:init (ivy-rich-mode 1))
|
|
|
|
;; Cuando iniicias un atajo de teclas te muestra las posibilidades
|
|
(use-package which-key
|
|
:config
|
|
(which-key-mode))
|
|
|
|
;; Autocompletado de parentesis, corchetes, llaves, etc.
|
|
(use-package smartparens
|
|
:config
|
|
(smartparens-global-mode t))
|
|
|
|
;; Org-Mode
|
|
|
|
(defun efs/org-font-setup ()
|
|
"ORG font faces setup."
|
|
|
|
;; Set faces for heading levels
|
|
(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))
|
|
|
|
(defun efs/org-mode-setup ()
|
|
"Set some configs on 'org-mode'."
|
|
(display-line-numbers-mode 0)
|
|
(org-indent-mode)
|
|
(variable-pitch-mode 1)
|
|
(visual-line-mode 1)
|
|
(setq evil-auto-indent nil)
|
|
)
|
|
|
|
(use-package org
|
|
:defer t
|
|
:pin org
|
|
:hook (org-mode . efs/org-mode-setup)
|
|
:config
|
|
(setq org-ellipsis " ▾")
|
|
(setq org-hide-emphasis-markers t)
|
|
|
|
(setq org-agenda-start-with-log-mode t)
|
|
(setq org-log-done 'time)
|
|
(setq org-log-into-drawer t)
|
|
|
|
|
|
;; Palabras claves del To Do de org-mode
|
|
(setq org-todo-keywords
|
|
;;'((sequence "☐" "✔" "⌛" "❌")))
|
|
'((sequence "TODO(t)" "DOING(n)" "WAITING(w)" "|" "DONE(d!)" "CANCELED(c!)")))
|
|
(setq org-todo-keyword-faces
|
|
'(("TODO" . "#ff6464")
|
|
("DOING" . "yellow")
|
|
("DONE" . "green")
|
|
("WAITING" . "orange")
|
|
("CANCELED" . "#aaa"))
|
|
)
|
|
|
|
;; Archivos a usarse en org-agenda
|
|
(setq org-agenda-files
|
|
'("~/Proyectos/ORGenda/Ideas.org"
|
|
"~/Proyectos/ORGenda/IdeasTwitch.org"
|
|
"~/Proyectos/ORGenda/Proyectos.org"
|
|
"~/Proyectos/ORGenda/Tareas.org")
|
|
)
|
|
|
|
;; Archivos entre los que se moverán las tareas
|
|
(setq org-refile-targets
|
|
'(("Archivo.org" :maxlevel . 1)
|
|
("Proyectos.org" :maxlevel . 1)
|
|
("IdeasTwitch.org" :maxlevel . 1)
|
|
("Ideas.org" :maxlevel . 1)
|
|
("Tareas.org" :maxlevel . 1)))
|
|
|
|
;; Guardar los archivos cuando se muevan tareas entre ellos
|
|
(advice-add 'org-refile :after 'org-save-all-org-buffers)
|
|
|
|
(setq org-capture-templates
|
|
`(("t" "Tareas / Projectos")
|
|
("tt" "Tareas" entry (file+olp "~/Proyectos/ORGenda/Tareas.org")
|
|
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
|
|
("tp" "Proyectos" entry (file+olp "~/Proyectos/ORGenda/Proyectos.org")
|
|
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
|
|
("i" "Ideas")
|
|
("ii" "Ideas General" entry
|
|
(file+olp "~/Proyectos/ORGenda/ideas.org")
|
|
"* TODO %?\n %a\n %i" :empty-lines 1)
|
|
("it" "Ideas Twitch" entry
|
|
(file+olp "~/Proyectos/ORGenda/IdeasTwitch.org")
|
|
"* TODO %?\n %a\n %i" :empty-lines 1)
|
|
)
|
|
)
|
|
|
|
(efs/org-font-setup))
|
|
|
|
(use-package org-superstar
|
|
:hook
|
|
(org-mode . org-superstar-mode)
|
|
:config
|
|
(setq org-superstar-special-todo-items t)
|
|
)
|
|
|
|
(defun efs/org-mode-visual-fill ()
|
|
"Visual mode fill columns."
|
|
(visual-fill-column-mode 1))
|
|
|
|
(use-package visual-fill-column
|
|
:hook (org-mode . efs/org-mode-visual-fill)
|
|
:config
|
|
;; Tamaño de la columna
|
|
(setq visual-fill-column-width 150)
|
|
;; Centrar el texto
|
|
(setq-default visual-fill-column-center-text t)
|
|
)
|
|
|
|
(provide 'base-extensions)
|
|
;;; base-extensions.el ends here
|