spacemacs/layers/+lang/lua/funcs.el

52 lines
1.5 KiB
EmacsLisp
Raw Normal View History

2019-11-12 03:29:50 +00:00
;;; funcs.el --- Lua Layer functions File for Spacemacs
;;
2020-09-16 21:34:40 +00:00
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
2019-11-12 03:29:50 +00:00
;;
;; Author: Lin Sun <sunlin7@yahoo.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs//lua-setup-backend ()
"Conditionally setup lua backend."
(setq lua-indent-level 2
lua-indent-string-contents t)
(spacemacs/declare-prefix-for-mode 'lua-mode "mh" "help")
(spacemacs/declare-prefix-for-mode 'lua-mode "ms" "REPL")
(spacemacs/declare-prefix-for-mode 'lua-mode "mg" "goto")
2019-11-12 03:29:50 +00:00
(spacemacs/set-leader-keys-for-major-mode 'lua-mode
"hd" 'lua-search-documentation
"sb" 'lua-send-buffer
"sf" 'lua-send-defun
"sl" 'lua-send-current-line
"sr" 'lua-send-region
"'" 'lua-show-process-buffer)
(pcase lua-backend
2019-11-12 03:29:50 +00:00
(`lsp-emmy (spacemacs//lua-setup-lsp-emmy))))
(defun spacemacs//lua-setup-company ()
"Conditionally setup company based on backend."
(pcase lua-backend
(_ (spacemacs//lua-setup-company-lua))))
2019-11-12 03:29:50 +00:00
;; LSP Lua
(defun spacemacs//lua-setup-lsp-emmy ()
"Setup LSP Lua."
(when lua-lsp-emmy-java-path
(setq lsp-clients-emmy-lua-java-path lua-lsp-emmy-java-path))
(when lua-lsp-emmy-jar-path
(setq lsp-clients-emmy-lua-jar-path (expand-file-name lua-lsp-emmy-jar-path)))
(setq lsp-enable-file-watchers lua-lsp-emmy-enable-file-watchers)
(lsp))
2019-11-12 03:29:50 +00:00
;; Lua mode
(defun spacemacs//lua-setup-company-lua ()
(spacemacs|add-company-backends
:backends company-lua
:modes lua-mode)
(company-mode))