Mixed changes.

- Rename org-config.el to base-org.el.
- Enable lsp by default.
- Improve lsp.
- Add citre package (ctags IDE).
- Add ripgrep search.
- Add pomidor  (pomodoro timer).
- Move keybinding for improve load time (some are deleted or changed).
- Add C-x C-r keybinding for recent files.
- And more...
This commit is contained in:
kj
2022-06-01 09:18:06 -04:00
parent 7ee9bd4492
commit a7045d3b30
16 changed files with 1182 additions and 207 deletions

View File

@ -1,4 +1,4 @@
;;; lang-php.el --- Configuración para el lenguaje PHP
;;; lang-php.el --- Configuración para el lenguaje PHP -*- lexical-binding: t -*-
;; Author: kj <webmaster@outcontrol.net>
;; URL: https://git.kj2.me/kj/confi-emacs-actual
@ -7,19 +7,14 @@
;;; Code:
;;(use-package company-php :defer t)
;;(use-package ac-php :defer t)
(use-package php-mode
:defer t
:straight t
:hook ((php-mode . (lambda ()
(local-set-key (kbd "C-c d b") 'php-doc-block) ;; atajo para docblock
(company-mode t) ; habilita company mode
;;(ac-php-core-eldoc-setup) ; habilita soporte para ELDoc
;;(add-to-list 'company-backends '(company-capf company-ac-php-backend :with company-yasnippet)) ; Agregar ac-php para a company
))
(php-mode . lsp)
;;(php-mode . lsp)
)
)