From c8258d2087c0b8851e2e19da454e8f3b5f72d738 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sun, 3 Mar 2024 22:59:31 +0000 Subject: [PATCH] chore(nvim): configure default lua style This is the same configuration applied in kickstart repo. --- .stylua.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .stylua.toml 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"