diff options
| author | venomade <venomade@venomade.com> | 2026-01-18 16:07:54 +0000 |
|---|---|---|
| committer | venomade <venomade@venomade.com> | 2026-01-18 16:07:54 +0000 |
| commit | 8d688d1107c46b6dfdcaf02fa5c9c4c8a4640e65 (patch) | |
| tree | 76edfeb78094eb8491b1f32a2acd45b6ba95ffa2 /.emacs.d/lang/lua.el | |
| parent | edcf5dd381c26274a939f4e703539b15c0058e99 (diff) | |
KDE & Emacs
Diffstat (limited to '.emacs.d/lang/lua.el')
| -rw-r--r-- | .emacs.d/lang/lua.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.emacs.d/lang/lua.el b/.emacs.d/lang/lua.el new file mode 100644 index 0000000..dfc1b19 --- /dev/null +++ b/.emacs.d/lang/lua.el @@ -0,0 +1,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)) |
