2022-11-19 04:33:22 +01:00
|
|
|
;;; init-eglot.el --- Configuración de eglot (LSP) -*- lexical-binding: t -*-
|
2022-11-19 03:56:34 +01:00
|
|
|
|
|
|
|
;; 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")))
|
|
|
|
)
|
|
|
|
|
2022-11-19 04:33:22 +01:00
|
|
|
(provide 'init-eglot)
|
|
|
|
;;; init-eglot.el ends here
|