VSCode or VSCodium
parent
7accccd955
commit
c8fc1d2277
|
@ -14,7 +14,7 @@ else
|
||||||
git pull origin master
|
git pull origin master
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# links
|
# shell related dotfiles
|
||||||
ln -fs ${BASE}/bashrc ${HOME}/.bashrc
|
ln -fs ${BASE}/bashrc ${HOME}/.bashrc
|
||||||
ln -fs ${BASE}/bash_profile ${HOME}/.bash_profile
|
ln -fs ${BASE}/bash_profile ${HOME}/.bash_profile
|
||||||
ln -fs ${BASE}/bash_aliases ${HOME}/.bash_aliases
|
ln -fs ${BASE}/bash_aliases ${HOME}/.bash_aliases
|
||||||
|
@ -25,10 +25,14 @@ if [ -f "${HOME}/.hyper.js" ]; then
|
||||||
ln -fs ${BASE}/hyper.js ${HOME}/.hyper.js
|
ln -fs ${BASE}/hyper.js ${HOME}/.hyper.js
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "${HOME}/.config/VSCodium/User" ]; then
|
# VSCode or VSCodium
|
||||||
|
if [ -d "${HOME}/.config/Code/User" ]; then
|
||||||
|
ln -fs ${BASE}/vscode-settings.json ${HOME}/.config/Code/User/settings.json
|
||||||
|
elif [ -d "${HOME}/.config/VSCodium/User" ]; then
|
||||||
ln -fs ${BASE}/vscode-settings.json ${HOME}/.config/VSCodium/User/settings.json
|
ln -fs ${BASE}/vscode-settings.json ${HOME}/.config/VSCodium/User/settings.json
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Git user config
|
||||||
git config --global user.email "raphael@crvx.fr"
|
git config --global user.email "raphael@crvx.fr"
|
||||||
git config --global user.name "sundowndev"
|
git config --global user.name "sundowndev"
|
||||||
|
|
||||||
|
@ -37,7 +41,6 @@ git config --global user.name "sundowndev"
|
||||||
#curl --insecure -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
|
#curl --insecure -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
|
||||||
#mv -v ~/.vimrc ~/.vimrc.old 2> /dev/null
|
#mv -v ~/.vimrc ~/.vimrc.old 2> /dev/null
|
||||||
#ln -sf $BASE/vimrc ~/.vimrc
|
#ln -sf $BASE/vimrc ~/.vimrc
|
||||||
|
|
||||||
#vim +PlugInstall +qall
|
#vim +PlugInstall +qall
|
||||||
|
|
||||||
echo "==> script executed"
|
echo "==> script executed"
|
||||||
|
|
Loading…
Reference in New Issue