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
1.0 KiB
43 lines
1.0 KiB
#!/bin/bash
|
|
|
|
declare -A COLORS
|
|
|
|
COLORS=(\
|
|
[color0]="#5C6370" \
|
|
[color1]="#E06C75" \
|
|
[color2]="#98C379" \
|
|
[color3]="#E5C07B" \
|
|
[color4]="#61AFEF" \
|
|
[color5]="#C678DD" \
|
|
[color6]="#56B6C2" \
|
|
[color7]="#ABB2BF" \
|
|
[color8]="#4C566A" \
|
|
[color9]="#BE5046" \
|
|
[color10]="#98C379" \
|
|
[color11]="#D19A66" \
|
|
[color12]="#61AFEF" \
|
|
[color13]="#C678DD" \
|
|
[color14]="#56B6C2" \
|
|
[color15]="#3E4452" \
|
|
[background]="#282C34" \
|
|
[lightbackground]="${COLORS[color8]}" \
|
|
[foreground]="#ABB2BF" \
|
|
[darkforeground]="${COLORS[color7]}" \
|
|
[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]="${COLORS[currentline]}" \
|
|
[comment]="${COLORS[lightbackground]}" \
|
|
[cursor]="${COLORS[foreground]}" \
|
|
)
|
|
|
|
VIMCOLORSCHEME="onedark"
|
|
VIMLIGHTLINE="onedark"
|
|
VIMBACKGROUND="dark"
|