Initial commit

This commit is contained in:
Kristofers Solo 2025-05-21 09:47:46 +03:00
commit 065a965bab
Signed by: kristoferssolo
GPG Key ID: 74FF8144483D82C8
5 changed files with 93 additions and 0 deletions

46
.gitignore vendored Normal file
View File

@ -0,0 +1,46 @@
#--------------------------------------------------#
# The following was generated with gitignore.nvim: #
#--------------------------------------------------#
# Gitignore for the following technologies: Lua
# Compiled Lua sources
luac.out
# luarocks build files
*.src.rock
*.zip
*.tar.gz
# Object files
*.o
*.os
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
*.def
*.exp
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

5
.luarc.json Normal file
View File

@ -0,0 +1,5 @@
{
"diagnostics.disable": [
"unused-local"
]
}

25
neovim.yml Normal file
View File

@ -0,0 +1,25 @@
base: lua51
globals:
vim:
any: true
Snacks:
any: true
assert:
args:
- type: bool
- type: string
required: false
after_each:
args:
- type: function
before_each:
args:
- type: function
describe:
args:
- type: string
- type: function
it:
args:
- type: string
- type: function

7
selene.toml Normal file
View File

@ -0,0 +1,7 @@
std = "neovim"
[rules]
global_usage = "allow"
multiple_statements = "allow"
incorrect_standard_library_use = "allow"
mixed_table = "allow"

10
stylua.toml Normal file
View File

@ -0,0 +1,10 @@
column_width = 120
line_endings = "Unix"
indent_type = "Tabs"
indent_width = 4
quote_style = "AutoPreferDouble"
call_parentheses = "Always"
collapse_simple_statement = "Never"
[sort_requires]
enabled = false