19 lines
		
	
	
		
			405 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			405 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
| ;;; 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
 |