warm & fuzzy colorscheme for neovim

meta: style

+87 -19
+19 -19
colors/mimi.lua
··· 4 4 5 5 -- palette ==================================================================== 6 6 local palette = { 7 - bg_edge2 = "#120D08", 8 - bg_edge = "#1C1207", 9 - bg = "#1C1712", 10 - bg_mid = "#33200D", 11 - bg_mid2 = "#4D4035", 12 - fg_edge2 = "#F8ECE1", 13 - fg_edge = "#EACFB7", 14 - fg = "#F0DBC7", 15 - fg_mid = "#B6987D", 16 - fg_mid2 = "#8F735B", 7 + bg_edge2 = "#120D08", 8 + bg_edge = "#1C1207", 9 + bg = "#1C1712", 10 + bg_mid = "#33200D", 11 + bg_mid2 = "#4D4035", 12 + fg_edge2 = "#F8ECE1", 13 + fg_edge = "#EACFB7", 14 + fg = "#F0DBC7", 15 + fg_mid = "#B6987D", 16 + fg_mid2 = "#8F735B", 17 17 18 - accent = "#AD496C", 18 + accent = "#AD496C", 19 19 20 - red = "#AF4C58", 21 - orange = "#B87058", 22 - yellow = "#CFA06B", 23 - green = "#A6C99F", 24 - cyan = "#A1CFB7", 25 - azure = "#95C2BC", 26 - blue = "#A4B7C9", 27 - purple = "#CE8C98", 20 + red = "#AF4C58", 21 + orange = "#B87058", 22 + yellow = "#CFA06B", 23 + green = "#A6C99F", 24 + cyan = "#A1CFB7", 25 + azure = "#95C2BC", 26 + blue = "#A4B7C9", 27 + purple = "#CE8C98", 28 28 } 29 29 30 30 require("mini.hues").apply_palette(palette)
+4
selene.toml
··· 1 + std="vim" 2 + 3 + [rules] 4 + mixed_table = "allow"
+9
stylua.toml
··· 1 + indent_type = "Spaces" 2 + indent_width = 2 3 + column_width = 120 4 + quote_style = "AutoPreferDouble" 5 + call_parentheses = "Always" 6 + line_endings = "Unix" 7 + 8 + [sort_requires] 9 + enabled = true
+55
vim.toml
··· 1 + [selene] 2 + base = "lua51" 3 + name = "vim" 4 + 5 + [vim] 6 + any = true 7 + 8 + [[describe.args]] 9 + type = "string" 10 + [[describe.args]] 11 + type = "function" 12 + 13 + [[it.args]] 14 + type = "string" 15 + [[it.args]] 16 + type = "function" 17 + 18 + [[before_each.args]] 19 + type = "function" 20 + [[after_each.args]] 21 + type = "function" 22 + 23 + [assert.is_not] 24 + any = true 25 + 26 + [assert.matches] 27 + any = true 28 + 29 + [assert.has_error] 30 + any = true 31 + 32 + [[assert.equals.args]] 33 + type = "any" 34 + [[assert.equals.args]] 35 + type = "any" 36 + [[assert.equals.args]] 37 + type = "any" 38 + required = false 39 + 40 + [[assert.same.args]] 41 + type = "any" 42 + [[assert.same.args]] 43 + type = "any" 44 + 45 + [[assert.truthy.args]] 46 + type = "any" 47 + 48 + [[assert.falsy.args]] 49 + type = "any" 50 + 51 + [[assert.spy.args]] 52 + type = "any" 53 + 54 + [[assert.stub.args]] 55 + type = "any"