From 06ab884fb2f166c791448a1f2884bc22680f00d8 Mon Sep 17 00:00:00 2001 From: Ray Andrew Date: Wed, 7 Aug 2024 20:33:19 -0500 Subject: [PATCH] add gitignore and stylua --- .gitignore | 7 +++++++ .stylua.toml | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 .stylua.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..005b535 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +tags +test.sh +.luarc.json +nvim + +spell/ +lazy-lock.json diff --git a/.stylua.toml b/.stylua.toml new file mode 100644 index 0000000..139e939 --- /dev/null +++ b/.stylua.toml @@ -0,0 +1,6 @@ +column_width = 160 +line_endings = "Unix" +indent_type = "Spaces" +indent_width = 2 +quote_style = "AutoPreferSingle" +call_parentheses = "None"