aboutsummaryrefslogtreecommitdiff
path: root/.local/share/mode/plug.d/20_export_vim_theme
blob: be76b8bd7ad41e2cc6f6809379a35d3e1219ebc8 (plain)
1
2
3
4
5
6
#!/bin/sh
# warn if the vim theme is not installed
if [ "$(find "$XDG_CONFIG_HOME/nvim" -name "$vim_theme_name.vim" | wc -l)" -eq 0 ] ; then
	echo "warn: vim theme $vim_theme_name does not appear to be installed" >&2
fi
export vim_theme_name