dotfiles/fish/.config/fish/functions/vb.fish

6 lines
194 B
Fish

function vb --description 'Build helper for neovim'
make distclean && make CC=gcc CMAKE_BUILD_TYPE=Release && \
doas rm -rf /usr/local/share/nvim/runtime/ && \
doas make install
end