Rename config files.

This commit is contained in:
kj
2022-11-18 23:33:22 -04:00
parent 52db45d968
commit dc74b4bde0
12 changed files with 52 additions and 51 deletions

18
configs/init-eglot.el Normal file
View File

@ -0,0 +1,18 @@
;;; 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
;;; Commentary:
;;; Code:
(use-package eglot
:defer t
:straight (:type built-in)
:config
(add-to-list 'eglot-server-programs '(php-mode . ("intelephense" "--stdio")))
)
(provide 'init-eglot)
;;; init-eglot.el ends here