Skip to content

Latest commit

 

History

History
56 lines (53 loc) · 1.44 KB

README.md

File metadata and controls

56 lines (53 loc) · 1.44 KB

My vim config

To install my config you need to do this steps

Getting Started

These instructions will get you a copy of my vim config files, that you can use.

Prerequisites

What things you need to install the software and how to install them
Linux

  • vim
    sudo apt-get install vim
    
  • curl
    sudo apt-get install curl
    
  • cmake
    sudo apt-get install cmake
    

Other (no idea)

Installing

  • Clone my vim files
    git clone git@github.com:zimdero/vim.git .vim
    
  • Install vim-plug on your system.
    Github link.
    https://github.com/junegunn/vim-plug
    When you install vim-plug make sure it will be installed in ~/.vim/ path where you move my files
  • Make .vimrc symlink
    ln -s ~/.vim/.vimrc ~/.vimrc
    
  • Install all packages
    Open vi(vim) and type
    :PlugInstall
    
  • After installation we need to install YouCompleteMe (https://github.com/Valloric/YouCompleteMe), we have already downloaded it we need only to install localy
    cd ~/.vim/plugged/YouCompleteMe/ and execute
    ./install.py
    
  • Now we need to make vimproc (https://github.com/shougo/vimproc.vim)
    cd ~/.vim/plugged/vimproc.vim/ and execute
    make
    
  • Now we need to make symlink for dracula theme
    ln -s ~/.vim/plugged/dracula/colors/dracula.vim ~/.vim/colors/
    

Congratulations you install my vim config