forked from rbhaddon/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
51 lines (39 loc) · 1.34 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Create a VIM Workstation Anywhere
# =================================
# Preliminary Git stuff if not done already
git config --global user.name "Firt Last"
git config --global user.email [email protected]
git config --global push.default "matching"
git config --global color.status auto
git config --global color.branch auto
# Now onto vim stuff
# ------------------
# Link .vimrc and .gvimrc to ~/
ln -s ~/.vim/.vimrc ~/.vimrc
ln -s ~/.vim/.gvimrc ~/.gvimrc
# New information on submodules
# -----------------------------
# My .vim now uses Vundle, which combines Pathogen with an inside-vim management
# interface. You no longer need to manage plugins with git.
# Vundle install on new systems:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# Have vundle install/update your bundles from command-line:
vim +PluginInstall +qall
# Or operate vundle from within vim:
# Vundle help:
:h vundle
# Update plugins:
:PluginUpdate
# List my plugins:
:PluginList
# YouCompleteMe
# -------------
# After updating YCM with vundle, its libraries will need to be recompiled. Do
# that by repeating the installation steps:
# Linux:
sudo apt-get install cmake python-dev
cd ~/.vim/bundle/YouCompleteMe
python install.py # --all for all completers, see --help for the list
# OSX
brew install cmake
# then run the installer as with linux