Skip to content

Commit fa6736a

Browse files
committed
add: dracula color palette, nvim & python3 defaults
1 parent 2259c00 commit fa6736a

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

colors/dracula.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"black": "#282a36",
3+
"blue": "#6272a4",
4+
"cyan": "#8be9fd",
5+
"gray": "#44475a",
6+
"green": "#50fa7b",
7+
"magenta": "#bd93f9",
8+
"red": "#ff5555",
9+
"white": "#f8f8f2",
10+
"yellow": "#ffb86c"
11+
}

lib/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,16 @@ const DEFAULT_CONFIG = {
7171
retry: 2
7272
},
7373
code: {
74-
editor: 'vim',
75-
lang: 'cpp'
74+
editor: 'nvim',
75+
lang: 'python3'
7676
},
7777
file: {
7878
show: '${fid}.${slug}',
7979
submission: '${fid}.${slug}.${sid}.${ac}'
8080
},
8181
color: {
8282
enable: true,
83-
theme: 'default'
83+
theme: 'dracula'
8484
},
8585
icon: {
8686
theme: ''

0 commit comments

Comments
 (0)