Coder Social home page Coder Social logo

remote-vim's Introduction

Initial Setup

Go to Home Directory and Remove old .vim folder.

cd ~
mv .vim .vim.bak

Don't forget to source the file

vim .vimrc

Add "source .vim/.vimrc" to the file without quotations

Clone Repository

git clone https://github.com/Verron/remote-vim .vim

Install Plugins

cd .vim
git submodule init
git submodule update

Add new Plugin

Change Pathogen install method of

cd ~/.vim/bundle
git clone [plugin repository] [repository name]

to

cd ~/.vim
git submodule add [plugin repository] bundle/[repository name] 

Dependency

CTags

sudo apt-get install ctags

Powerline Fonts

Reference: http://askubuntu.com/questions/283908/how-can-i-install-and-use-powerline-plugin

wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf
sudo mv PowerlineSymbols.otf /usr/share/fonts/
sudo fc-cache -vf
sudo mv 10-powerline-symbols.conf /etc/fonts/conf.d/

Terminator Solarized Scheme

See https://github.com/ghuntley/terminator-solarized for more detail

mkdir ~/.config/terminator
cp ~/.vim/configurations/terminator/config ~/.config/terminator/

CentOS/RHEL and older VIM

CentOS's repositories contain an older version of VIM. Enter the following to upgrade. This has been tested on CentOS 6.5. If you have permission issues, try using sudo

Install/Upgrade Python

To choose a version of Python newer than 2.7.9, visit https://www.python.org/ftp/python/

yum groupinstall -y 'development tools'
yum install -y zlib-dev openssl-devel sqlite-devel bzip2-devel xz-libs
cd && wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
xz -d Python-2.7.9.tar.xz
tar -xvf Python-2.7.9.tar && rm -f Python-2.7.9.tar
cd Python-2.7.9/ && ./configure && make && make altinstall
ln -s /usr/local/bin/python2.7 /usr/bin/python2.7

Install/Upgrade VIM

Remove yum's VIM and compile from source

yum remove -y vim
yum install -y python-devel

Install ctrlp-cmatcher

Faster than the matcher used using vimscript

sudo apt-get install python-dev
cd bundle/ctrlp-cmatcher/
./install.sh 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.