diff --git a/README.md b/README.md index 8b6a9d8..2470f00 100644 --- a/README.md +++ b/README.md @@ -50,9 +50,7 @@ VimsCode est un IDE avec vim pour les débutant ou les expert : Prérequis : ``` -sudo apt update -sudo apt install git elinks figlet -git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +git clone https://git.cohabit.fr/bastien/VimsCode.git ``` ### Installation de VimsCode : @@ -60,22 +58,10 @@ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim Après le clone, lancer juste le script d'installation ``` -https://git.cohabit.fr/bastien/VimsCode.git -cd VimsCode chmod +x install.sh ./install.sh ``` -### Alias : - -Quand vous chargez vim pour la première fois apres l'installation, ce dernier vous mettra plusieurs erreurs car vous n'avez pas encore installer les greffons nécessaire à son bon fonctionnement. - -Editer votre bashrc ou zshrc pour ajouter l'alias VimsCode : -``` -vim ~/.zshrc or vim ~/.bashrc -alias vimscode="~/.vim/vimscode.sh" -``` - ### Installations des Greffons : Lancer `vim` et taper la commande `:PluginInstall` @@ -122,7 +108,5 @@ Et pour voir d'autres thèmes : [Theme](https://github.com/flazz/vim-colorscheme Pour mettre à jour VimsCode, taper simple ces commandes : ``` -cd ~/.vim -chmod +x update-vimscode ./update-vimscode ``` diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 95f9abc..a3e968c --- a/install.sh +++ b/install.sh @@ -1,6 +1,20 @@ #!/bin/bash +sudo apt update +sudo apt install elinks git figlet + mv * ~/.vim && rm -rf Vimscode cd ~/.vim && mv vimrc-conf ~/.vimrc -cd ~/.vim/bundle/ && git clone https://github.com/VundleVim/Vundle.vim.git -echo "installation terminé, lancer vim puis ":PluginInstall"" +cd ~/.vim/bundle/ && git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +chmod +x update-vimscode + +echo "Utilisez-vous bash ou zsh ?" +read term + +if [ "$term" = "bash" ]; then + cat 'alias vimscode=\"~/.vim/vimscode.sh\"' >> ~/.bashrc +else + cat 'alias vimscode=\"~/.vim/vimscode.sh\"' >> ~/.zshrc +fi + +echo "Installation terminé, lancer vim puis taper sur ":" et écrivé "PluginInstall" diff --git a/update-vimscode b/update-vimscode old mode 100644 new mode 100755