19 lines
405 B
EmacsLisp
19 lines
405 B
EmacsLisp
|
;;; base-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 'base-eglot)
|
||
|
;;; base-eglot.el ends here
|