2015-03-26 16:48:05 +01:00
2015-04-29 16:38:53 +02:00
2015-05-22 18:27:11 +02:00
2015-05-20 15:45:10 +02:00
2015-05-27 14:53:14 +02:00
2015-05-30 20:19:01 +02:00

Installation:

git clone https://github.com/Pezz89/vimconfig.git ~/.vim

Local vimrc (.lvimrc) once plugins have been installed, it is possible to set up a vimrc locally for both machine and individual projects create a file called .lvimrc in the home directory and it will be sourced any time a file is accessed in a sub folder of that directory In addition, .lvimrc files can be placed in project folder to allow for project specific vim configuartions

Create symlinks:

ln -s ~/.vim/vimrc ~/.vimrc

Fetch submodules: cd ~/.vim git submodule update --init --recursive

To upgrade all modules run:

git submodule foreach git pull origin master --recursive(?)

To upgrade a single plugin run:

cd ~/.vim/bundle/fugitive
git pull origin master

To fix colour (/lack of) problems add the following lines to ~/.bashrc: export TERM="xterm-256color"

Install a new submodule plugin: cd ~/.vim git submodule add git://github.com/tpope/vim-fugitive.git bundle/fugitive git submodule init && git submodule update

Installing a local copy of Vim: cd ~/.vim/vim/ make distclean ./configure --with-features=huge --enable-pythoninterp --with-python-config-dir=/path/to/python2.7/config make

The following lines must then be added to the .bashrc or .bash_profile:
alias vim='~/.vim/vim/src/vim'

The following lines can also be added to the .cshrc for the same effect when accessing vim via ssh:
setenv VIM $HOME/.vim/vim/runtime/

Installing Homebrew/Linuxbrew and cmake: Install homebrew: (May need to run "bash" first if running over ssh) ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Set the brew path:
set path = (/net/inavouable/u.anasynth10/perry/.linuxbrew/bin $path)

Install cmake via brew:
brew install cmake

Installing JavaScript Syntastic support Install node.js: brew install node npm -g install jshint

Setting enviroment variables in .cshrc for VIM: setenv VIM "/.vim/vim/src/vim" setenv VIMRUNTIME "/.vim/vim/runtime" setenv EDITOR 'vim'

S
Description
No description provided
Readme 116 KiB
Languages
Vim Script 100%