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