build(teal): initial teal config

This commit is contained in:
Aire-One 2022-08-20 12:25:09 +02:00
parent f01ad65e05
commit 2fcd75cc3d
3 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,9 @@ insert_final_newline = true
[*.lua]
indent_size = 3
[*.{tl,d.tl}]
indent_size = 3
[justfile]
indent_size = 2

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
lua_modules
generated
build

8
tlconfig.lua Normal file
View File

@ -0,0 +1,8 @@
return {
build_dir = "build",
source_dir = "src",
include_dir = {
"src/awesomewm.d.tl",
"types",
},
}