mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-22 06:28:08 +01:00
5 lines
204 B
Fish
5 lines
204 B
Fish
function update_nvim_theme --description 'Update neovim theme with light/dark mode' --argument theme
|
|
for addr in $NVIM_TMP_DIR/**/*
|
|
nvim --server $addr --remote-send ":set background=$theme <cr>"
|
|
end
|
|
end
|