You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1021 B
43 lines
1021 B
#!/bin/bash
|
|
|
|
declare -A COLORS
|
|
|
|
COLORS=(\
|
|
[color0]="#000000" \
|
|
[color1]="#CC3E28" \
|
|
[color2]="#216609" \
|
|
[color3]="#B58900" \
|
|
[color4]="#1E6FCC" \
|
|
[color5]="#5C21A5" \
|
|
[color6]="#158C86" \
|
|
[color7]="#FFFFFF" \
|
|
[color8]="#555555" \
|
|
[color9]="#CC3E28" \
|
|
[color10]="#216609" \
|
|
[color11]="#B58900" \
|
|
[color12]="#1E6FCC" \
|
|
[color13]="#5C21A5" \
|
|
[color14]="#158c86" \
|
|
[color15]="#3E4452" \
|
|
[background]="#F2EEDE" \
|
|
[lightbackground]="${COLORS[color7]}" \
|
|
[foreground]="#000000" \
|
|
[darkforeground]="${COLORS[color8]}" \
|
|
[red]="${COLORS[color1]}" \
|
|
[green]="${COLORS[color2]}" \
|
|
[yellow]="${COLORS[color3]}" \
|
|
[blue]="${COLORS[color4]}" \
|
|
[purple]="${COLORS[color5]}" \
|
|
[magenta]="${COLORS[color5]}" \
|
|
[cyan]="${COLORS[color6]}" \
|
|
[orange]="${COLORS[color3]}" \
|
|
[currentline]="${COLORS[color8]}" \
|
|
[selection]="#D8D5C7" \
|
|
[comment]="${COLORS[darkforeground]}" \
|
|
[cursor]="${COLORS[foreground]}" \
|
|
)
|
|
|
|
VIMCOLORSCHEME="paper"
|
|
VIMLIGHTLINE="nord"
|
|
VIMBACKGROUND="light"
|