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]="#3B4252" \
|
|
[color1]="#BF616A" \
|
|
[color2]="#A3BE8C" \
|
|
[color3]="#EBCB8B" \
|
|
[color4]="#81A1C1" \
|
|
[color5]="#B48EAD" \
|
|
[color6]="#88C0D0" \
|
|
[color7]="#E5E9F0" \
|
|
[color8]="#4C566A" \
|
|
[color9]="#BF616A" \
|
|
[color10]="#A3BE8C" \
|
|
[color11]="#EBCB8B" \
|
|
[color12]="#81A1C1" \
|
|
[color13]="#B48EAD" \
|
|
[color14]="#8FBCBB" \
|
|
[color15]="#ECEFF4" \
|
|
[background]="#2E3440" \
|
|
[lightbackground]="${COLORS[color8]}" \
|
|
[foreground]="#D8DEE9" \
|
|
[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="nord"
|
|
VIMLIGHTLINE="nord"
|
|
VIMBACKGROUND="dark"
|