awesome-emmylua/.github
SystematicError 0a0732be08 Add more global variables 2022-06-26 07:31:25 +00:00
..
ISSUE_TEMPLATE feat: setup github markdowns 2022-06-23 12:59:43 -03:00
CODE_OF_CONDUCT.md feat: setup github markdowns 2022-06-23 12:59:43 -03:00
CONTRIBUTING.md feat: setup github markdowns 2022-06-23 12:59:43 -03:00
README.md Add more global variables 2022-06-26 07:31:25 +00:00

README.md

Awesome EmmyLua

About

AwesomeWM doesn't have good support for Lua autocompletion, so this repository is intended to rewrite documentation entirely by hand, without using generation tools.

Usage

We work with Lua using the LSP server lua-language-server created by sumneko, where its type annotations are based on EmmyLua annotations.

  • First, clone that repository somewhere on your disk using Git:
git clone https://github.com/awchad/awesome-emmylua ~/.local/share/awesome-emmylua
  • If your Lua project folder doesn't have a .luarc.json, create one and paste the following lines:
{
  "diagnostics.globals": [
    "awesome",
    "client",
    "mouse",
    "mousegrabber",
    "root",
    "screen",
    "tag"
  ],
  "workspace.library": [
    "~/.local/share/awesome-emmylua/lua"
  ]
}
  • You now have AwesomeWM autocompletion!

License

This repository is licensed under the GNU General Public License v3.0. Please see the license file for more information. tl;dr you can do whatever you want as long as you include the original copyright and license notice in any copy of the software/source.