Files
dots/.config/blueblack/light_mode/neovim.sh
2024-08-09 21:14:47 +02:00

11 lines
383 B
Bash
Executable File

#!/usr/bin/env bash
# This uses the neovim-remote python package to control other neovim instances.
# see: https://github.com/mhinz/neovim-remote
# Further, it is assumed that toggling the background in neovim is enough.
# Anything else should be handled by the set color scheme.
for server in $(nvr --serverlist); do
nvr --servername "$server" -cc 'set background=light'
done