aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--.chezmoiignore4
-rw-r--r--.prettierrc.json6
-rw-r--r--.stylua.toml6
-rw-r--r--nvim.yml5
-rw-r--r--selene.toml1
5 files changed, 22 insertions, 0 deletions
diff --git a/.chezmoiignore b/.chezmoiignore
index f6f6893..7a49601 100644
--- a/.chezmoiignore
+++ b/.chezmoiignore
@@ -10,3 +10,7 @@ etc/
firefox/
justfile
.githooks/
+.stylua.toml
+selene.toml
+nvim.yml
+.prettierrc.json
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..12e08aa
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,6 @@
+{
+ "singleQuote": false,
+ "trailingComma": "all",
+ "printWidth": 80,
+ "proseWrap": "preserve"
+}
diff --git a/.stylua.toml b/.stylua.toml
new file mode 100644
index 0000000..6397248
--- /dev/null
+++ b/.stylua.toml
@@ -0,0 +1,6 @@
+column_width = 80
+indent_type = "Spaces"
+indent_width = 2
+quote_style = "AutoPreferDouble"
+call_parentheses = "Always"
+collapse_simple_statement = "Never"
diff --git a/nvim.yml b/nvim.yml
new file mode 100644
index 0000000..53daa57
--- /dev/null
+++ b/nvim.yml
@@ -0,0 +1,5 @@
+---
+base: lua51
+globals:
+ vim:
+ any: true
diff --git a/selene.toml b/selene.toml
new file mode 100644
index 0000000..3df5aa0
--- /dev/null
+++ b/selene.toml
@@ -0,0 +1 @@
+std = "lua51+nvim"