about summary refs log tree commit diff
path: root/.emacs.d/lang/lua.el
blob: dfc1b19c92ec3e1a86ff2b699f00c7a0973141f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
;; Emacs Configuration for Lua

(use-package lua-mode
  :ensure t
  :config
  (add-hook 'lua-mode-hook #'eglot-ensure t)
  (setq lua-indent-level 2
        lua-documentation-url "https://www.lua.org/manual/5.4/manual.html"))

; TODO Try fix this only for lua-mode as that is where the bug is
(setq eglot-ignored-server-capabilities '(:documentOnTypeFormattingProvider))