Rename config files.
This commit is contained in:
parent
52db45d968
commit
dc74b4bde0
@ -1,4 +1,4 @@
|
||||
;;; base.el --- Configuración base de emacs -*- lexical-binding: t -*-
|
||||
;;; init-base.el --- Configuración base de emacs -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -145,5 +145,5 @@
|
||||
|
||||
(load custom-file)
|
||||
|
||||
(provide 'base)
|
||||
;;; base.el ends here
|
||||
(provide 'init-base)
|
||||
;;; init-base.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-company.el --- Autocompletado con company-mode -*- lexical-binding: t -*-
|
||||
;;; init-company.el --- Autocompletado con company-mode -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -346,5 +346,5 @@
|
||||
(Template . ,(all-the-icons-material "format_align_left" :height 1.0 :v-adjust -0.2)))
|
||||
company-box-icons-alist 'company-box-icons-all-the-icons))))
|
||||
|
||||
(provide 'base-company)
|
||||
;;; base-company.el ends here
|
||||
(provide 'init-company)
|
||||
;;; init-company.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-ctags.el --- Configuracíón de TAGS -*- lexical-binding: t -*-
|
||||
;;; init-ctags.el --- Configuracíón de TAGS -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -66,5 +66,5 @@
|
||||
(add-hook 'citre-mode-hook #'enable-lsp-citre-capf-backend)
|
||||
))
|
||||
|
||||
(provide 'base-ctags)
|
||||
;;; base-ctags.el ends here
|
||||
(provide 'init-ctags)
|
||||
;;; init-ctags.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-eglot.el --- Configuración de eglot (LSP) -*- lexical-binding: t -*-
|
||||
;;; init-eglot.el --- Configuración de eglot (LSP) -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -14,5 +14,5 @@
|
||||
(add-to-list 'eglot-server-programs '(php-mode . ("intelephense" "--stdio")))
|
||||
)
|
||||
|
||||
(provide 'base-eglot)
|
||||
;;; base-eglot.el ends here
|
||||
(provide 'init-eglot)
|
||||
;;; init-eglot.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-extensions.el --- Extensiones/paquetes instalados y su configuración -*- lexical-binding: t -*-
|
||||
;;; init-extensions.el --- Extensiones/paquetes instalados y su configuración -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -26,7 +26,8 @@
|
||||
(use-package dashboard
|
||||
:defer t
|
||||
:straight t
|
||||
:hook (after-init . dashboard-setup-startup-hook)
|
||||
;; :hook (after-init . dashboard-setup-startup-hook)
|
||||
:hook (after-init . org-agenda-list)
|
||||
:config
|
||||
(setq dashboard-set-file-icons t
|
||||
dashboard-set-heading-icons t
|
||||
@ -103,12 +104,12 @@
|
||||
:hook
|
||||
(after-init . global-git-gutter-mode))
|
||||
|
||||
(use-package gcmh
|
||||
:defer t
|
||||
:straight t
|
||||
:init
|
||||
(setq gcmh-high-cons-threshold 100000000)
|
||||
(gcmh-mode 1))
|
||||
;; (use-package gcmh
|
||||
;; :defer t
|
||||
;; :straight t
|
||||
;; :init
|
||||
;; (setq gcmh-high-cons-threshold 100000000)
|
||||
;; (gcmh-mode 1))
|
||||
|
||||
;; Highlight en los números.
|
||||
;; (use-package highlight-numbers
|
||||
@ -349,5 +350,5 @@
|
||||
:ensure t
|
||||
:straight t)
|
||||
|
||||
(provide 'base-extensions)
|
||||
;;; base-extensions.el ends here
|
||||
(provide 'init-extensions)
|
||||
;;; init-extensions.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-functions.el --- Configuración de org-mode -*- lexical-binding: t -*-
|
||||
;;; init-functions.el --- Configuración de org-mode -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -63,5 +63,5 @@ Saves to a temp file and puts the filename in the kill ring."
|
||||
(or (featurep 'all-the-icons)
|
||||
(require 'all-the-icons nil t))))
|
||||
|
||||
(provide 'base-functions)
|
||||
;;; base-functions.el ends here.
|
||||
(provide 'init-functions)
|
||||
;;; init-functions.el ends here.
|
@ -1,4 +1,4 @@
|
||||
;;; base-ivy.el --- Ayuditas y autocompletado del minibufer -*- lexical-binding: t -*-
|
||||
;;; init-ivy.el --- Ayuditas y autocompletado del minibufer -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -148,5 +148,5 @@
|
||||
:straight t
|
||||
:bind ("C-c C-y" . ivy-yasnippet))
|
||||
|
||||
(provide 'base-ivy)
|
||||
;;; base-ivy.el ends here
|
||||
(provide 'init-ivy)
|
||||
;;; init-ivy.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-keys.el --- Archivo de configuración de atajos -*- lexical-binding: t -*-
|
||||
;;; init-keys.el --- Archivo de configuración de atajos -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -40,5 +40,5 @@
|
||||
;; Deactivar el abrir *messages* al cliquear en el minibuffer
|
||||
(define-key minibuffer-inactive-mode-map [mouse-1] #'ignore)
|
||||
|
||||
(provide 'base-keys)
|
||||
;;; base-keys.el ends here
|
||||
(provide 'init-keys)
|
||||
;;; init-keys.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-lsp.el --- Languaje server protocol. -*- lexical-binding: t -*-
|
||||
;;; init-lsp.el --- Languaje server protocol. -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -246,5 +246,5 @@
|
||||
(push 'lsp-treemacs-symbols-mode aw-ignored-buffers)
|
||||
(push 'lsp-treemacs-java-deps-mode aw-ignored-buffers))))
|
||||
|
||||
(provide 'base-lsp)
|
||||
;;; base-lsp.el ends here
|
||||
(provide 'init-lsp)
|
||||
;;; init-lsp.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-config.el --- Configuración de org-mode -*- lexical-binding: t -*-
|
||||
;;; init-config.el --- Configuración de org-mode -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -184,5 +184,5 @@
|
||||
:ensure t
|
||||
:hook (org-mode . org-autolist-mode))
|
||||
|
||||
(provide 'base-org)
|
||||
;;; base-org.el ends here
|
||||
(provide 'init-org)
|
||||
;;; init-org.el ends here
|
@ -1,4 +1,4 @@
|
||||
;;; base-treemacs.el --- Extensiones/paquetes instalados y su configuración -*- lexical-binding: t -*-
|
||||
;;; init-treemacs.el --- Extensiones/paquetes instalados y su configuración -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: kj <webmaster@outcontrol.net>
|
||||
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
||||
@ -56,5 +56,5 @@
|
||||
magit-post-unstage)
|
||||
. treemacs-magit--schedule-update))
|
||||
|
||||
(provide 'base-treemacs)
|
||||
;;; base-treemacs.el ends here
|
||||
(provide 'init-treemacs)
|
||||
;;; init-treemacs.el ends here
|
22
init.el
22
init.el
@ -39,17 +39,17 @@
|
||||
(add-to-list 'load-path (concat user-emacs-directory "configs"))
|
||||
|
||||
;; Paquetes base
|
||||
(require 'base)
|
||||
(require 'base-extensions)
|
||||
(require 'base-functions)
|
||||
(require 'base-org)
|
||||
;; (require 'base-lsp)
|
||||
(require 'base-eglot)
|
||||
(require 'base-company)
|
||||
(require 'base-treemacs)
|
||||
;;(require 'base-ctags)
|
||||
(require 'base-ivy)
|
||||
(require 'base-keys)
|
||||
(require 'init-base)
|
||||
(require 'init-extensions)
|
||||
(require 'init-functions)
|
||||
(require 'init-org)
|
||||
;; (require 'init-lsp)
|
||||
(require 'init-eglot)
|
||||
(require 'init-company)
|
||||
(require 'init-treemacs)
|
||||
;;(require 'init-ctags)
|
||||
(require 'init-ivy)
|
||||
(require 'init-keys)
|
||||
|
||||
;; Lenguajes
|
||||
(require 'lang-php)
|
||||
|
Loading…
Reference in New Issue
Block a user