mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-22 14:38:04 +01:00
5 lines
254 B
Fish
5 lines
254 B
Fish
function update_nvim_theme --description 'Update neovim theme with light/dark mode' --argument theme
|
|
for addr in /var/folders/7r/l55lwv013hl_g8gc971k7kgw0000gn/T/nvim.gaugendre/**/*
|
|
nvim --server $addr --remote-send ":set background=$theme <cr>"
|
|
end
|
|
end
|