;;; funcs.el --- Lua Layer functions File for Spacemacs ;; ;; Copyright (c) 2012-2020 Sylvain Benner & Contributors ;; ;; Author: Lin Sun ;; 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") (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 (`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)))) ;; 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)) ;; Lua mode (defun spacemacs//lua-setup-company-lua () (spacemacs|add-company-backends :backends company-lua :modes lua-mode) (company-mode))