From 64b8a3258b5423885792730a84f352caf2f5f2b3 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 27 May 2023 12:12:23 -0400 Subject: [PATCH] Remove LSP from yaml. --- ansible/roles/emacs/files/lang-yaml.el | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ansible/roles/emacs/files/lang-yaml.el b/ansible/roles/emacs/files/lang-yaml.el index 75ce1d5..ec36668 100644 --- a/ansible/roles/emacs/files/lang-yaml.el +++ b/ansible/roles/emacs/files/lang-yaml.el @@ -1,12 +1,3 @@ -;; (defun yaml-backspace (arg) -;; "Special handling of yaml backspace." -;; (interactive "*p") -;; (if mark-active -;; (backward-delete-char-untabify arg) -;; (yaml-electric-backspace arg) -;; ) -;; ) - (defun yaml-format-buffer () "Run prettier." (interactive) @@ -21,15 +12,9 @@ ) :hook ( (yaml-ts-mode . (lambda () - (setq eglot-workspace-configuration - (list (cons ':yaml (list ':hover :json-false :validate :json-false :completion t)))) - (eglot-ensure) (add-hook 'before-save-hook 'yaml-format-buffer nil 'local) )) ) - ;; :bind ( - ;; (:map yaml-ts-mode-map ([backspace] . yaml-backspace)) - ;; ) :init (add-to-list 'major-mode-remap-alist '(yaml-mode . yaml-ts-mode)) (add-to-list 'treesit-language-source-alist '(yaml "https://github.com/ikatyang/tree-sitter-yaml"))