Last active
April 1, 2016 09:32
-
-
Save dimitardanailov/dbaf2a5d5bdd19a0d610 to your computer and use it in GitHub Desktop.
[Debian]Setup my vim environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd | |
mkdir source | |
cd source | |
wget https://gist.githubusercontent.com/dimitardanailov/c74d89d534ead0af1c3d/raw/8b3c0bbbc2549d39702c1a26d83d9eb052a87dbf/vim-installation-debian.sh | |
chmod +x vim-installation-debian.sh | |
./vim-installation-debian.sh | |
git clone https://github.com/dimitardanailov/dotvimfiles ~/.vim/ | |
# Create symbolic links so that ~/.vimrc points to the ~/.vim/vimrc file: | |
ln -s ~/.vim/vimrc ~/.vimrc | |
ln -s ~/.vim/gvimrc ~/.gvimrc | |
# Vundle | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
vim +PluginInstall +qall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment