fish: functions: Add a build helper for neovim

This commit is contained in:
Sanchayan Maity 2024-03-31 21:15:24 +05:30
parent 84f729f3c7
commit d9fdf69a78
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
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