diff --git a/colors/mimi.lua b/colors/mimi.lua index 047b448..1186bbd 100644 --- a/colors/mimi.lua +++ b/colors/mimi.lua @@ -4,27 +4,27 @@ -- palette ==================================================================== local palette = { - bg_edge2 = "#120D08", - bg_edge = "#1C1207", - bg = "#1C1712", - bg_mid = "#33200D", - bg_mid2 = "#4D4035", - fg_edge2 = "#F8ECE1", - fg_edge = "#EACFB7", - fg = "#F0DBC7", - fg_mid = "#B6987D", - fg_mid2 = "#8F735B", - - accent = "#AD496C", - - red = "#AF4C58", - orange = "#B87058", - yellow = "#CFA06B", - green = "#A6C99F", - cyan = "#A1CFB7", - azure = "#95C2BC", - blue = "#A4B7C9", - purple = "#CE8C98", + bg_edge2 = "#120D08", + bg_edge = "#1C1207", + bg = "#1C1712", + bg_mid = "#33200D", + bg_mid2 = "#4D4035", + fg_edge2 = "#F8ECE1", + fg_edge = "#EACFB7", + fg = "#F0DBC7", + fg_mid = "#B6987D", + fg_mid2 = "#8F735B", + + accent = "#AD496C", + + red = "#AF4C58", + orange = "#B87058", + yellow = "#CFA06B", + green = "#A6C99F", + cyan = "#A1CFB7", + azure = "#95C2BC", + blue = "#A4B7C9", + purple = "#CE8C98", } require("mini.hues").apply_palette(palette) diff --git a/selene.toml b/selene.toml new file mode 100644 index 0000000..7705278 --- /dev/null +++ b/selene.toml @@ -0,0 +1,4 @@ +std="vim" + +[rules] +mixed_table = "allow" diff --git a/stylua.toml b/stylua.toml new file mode 100644 index 0000000..5957975 --- /dev/null +++ b/stylua.toml @@ -0,0 +1,9 @@ +indent_type = "Spaces" +indent_width = 2 +column_width = 120 +quote_style = "AutoPreferDouble" +call_parentheses = "Always" +line_endings = "Unix" + +[sort_requires] +enabled = true diff --git a/vim.toml b/vim.toml new file mode 100644 index 0000000..77b3b7f --- /dev/null +++ b/vim.toml @@ -0,0 +1,55 @@ +[selene] +base = "lua51" +name = "vim" + +[vim] +any = true + +[[describe.args]] +type = "string" +[[describe.args]] +type = "function" + +[[it.args]] +type = "string" +[[it.args]] +type = "function" + +[[before_each.args]] +type = "function" +[[after_each.args]] +type = "function" + +[assert.is_not] +any = true + +[assert.matches] +any = true + +[assert.has_error] +any = true + +[[assert.equals.args]] +type = "any" +[[assert.equals.args]] +type = "any" +[[assert.equals.args]] +type = "any" +required = false + +[[assert.same.args]] +type = "any" +[[assert.same.args]] +type = "any" + +[[assert.truthy.args]] +type = "any" + +[[assert.falsy.args]] +type = "any" + +[[assert.spy.args]] +type = "any" + +[[assert.stub.args]] +type = "any"