fixing nvim and fd
This commit is contained in:
parent
048ee6badd
commit
de2f886423
|
@ -88,11 +88,8 @@ cp autocomplete/bat.fish $XDG_CONFIG_HOME/fish/completions/bat.fish
|
||||||
printf "${Blue}--> neovim${Color_Off}\n"
|
printf "${Blue}--> neovim${Color_Off}\n"
|
||||||
cd ${INSTALL_TMP_DIR}
|
cd ${INSTALL_TMP_DIR}
|
||||||
printf "${White} Downloading...${Color_Off}\n"
|
printf "${White} Downloading...${Color_Off}\n"
|
||||||
curl -sL https://github.com/neovim/neovim/releases/download/v0.7.0/nvim.appimage > nvim.appimage
|
curl -sL https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-linux64.tar.gz | tar xz
|
||||||
chmod u+x nvim.appimage
|
cd nvim-linux64*
|
||||||
printf "${White} Extracting AppImage...${Color_Off}\n"
|
|
||||||
./nvim.appimage --appimage-extract &> /dev/null
|
|
||||||
cd squashfs-root/usr
|
|
||||||
cp ./bin/* ${MB_ENV_BASE}/bin/
|
cp ./bin/* ${MB_ENV_BASE}/bin/
|
||||||
mkdir ${MB_ENV_BASE}/lib
|
mkdir ${MB_ENV_BASE}/lib
|
||||||
cp -r ./lib/* ${MB_ENV_BASE}/lib/
|
cp -r ./lib/* ${MB_ENV_BASE}/lib/
|
||||||
|
@ -149,7 +146,7 @@ chmod u+x fzf-tmux
|
||||||
|
|
||||||
printf "${Blue}--> fd${Color_Off}\n"
|
printf "${Blue}--> fd${Color_Off}\n"
|
||||||
cd ${INSTALL_TMP_DIR}
|
cd ${INSTALL_TMP_DIR}
|
||||||
curl -sL https://github.com/sharkdp/fd/releases/download/v8.4.0/fd-v8.4.0-i686-unknown-linux-gnu.tar.gz | tar xz
|
curl -sL https://github.com/sharkdp/fd/releases/download/v8.4.0/fd-v8.4.0-x86_64-unknown-linux-musl.tar.gz | tar xz
|
||||||
cd fd-*
|
cd fd-*
|
||||||
cp autocomplete/fd.fish $XDG_CONFIG_HOME/fish/completions/fd.fish
|
cp autocomplete/fd.fish $XDG_CONFIG_HOME/fish/completions/fd.fish
|
||||||
cp fd* ${MB_ENV_BASE}/bin
|
cp fd* ${MB_ENV_BASE}/bin
|
||||||
|
|
Loading…
Reference in New Issue