@adamCoder
adamWadeHarris.com
:visual
:vi
typing.io
(you might also want to look into emacs)
Practical Vim by Drew Neil
vi.stackexchange.com
reddit.com/r/vim
Vim Adventures
vimtutor
openvim.com
:help
Derek Wyatt- derekwyatt.org
Vim casts by Drew Neil- vimcasts.org
7 Habits For Effective Text Editing 2.0 by Bram Moolenaar
More Instantly Better Vim by Damian Conway
Smash into Vim- pluralsight.com/courses/smash-into-vim
The Art of Vim- upcase.com/the-art-of-vim
https://github.com/LevelbossMike/vim_shortcut_wallpaper
www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html
dotfiles.github.io
dotfiles/
setup.sh
vim/
bundle/
Vundle.vim
colors/
solarized.vim
vimrc
vimrc -> vim/vimrc
# This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles
############################
########## Variables
dir=~/dotfiles # dotfiles directory
olddir=~/dotfiles_old # old dotfiles backup directory
# list of files/folders to symlink in homedir
files="vim vimrc"
##########
# create dotfiles_old in homedir
echo -n "Creating $olddir for backup of any existing dotfiles in ~ ..."
mkdir -p $olddir
echo "done"
# change to the dotfiles directory
echo -n "Changing to the $dir directory ..."
cd $dir
echo "done"
# move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks from the homedir to any files in the ~/dotfiles directory specified in $files
for file in $files; do
echo "Moving $file from ~ to $olddir"
mv ~/.$file ~/dotfiles_old/
echo "Creating symlink to $file in home directory."
ln -s $dir/$file ~/.$file
done
.vim -> /Users/adamharris/dotfiles/vim
.vimrc -> /Users/adamharris/dotfiles/vimrc
dotfiles/
setup.sh
vim/
bundle/
Vundle.vim
colors/
solarized.vim
vimrc
vimrc -> vim/vimrc
$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
# example plugin
Plugin 'tpope/vim-fugitive'
call vundle#end()
filetype plugin indent on
Plugin 'tpope/vim-sensible'
:PluginInstall
$ mv solarized.vim ~/.vim/colors/
Bundle 'altercation/vim-colors-solarized'
syntax enable
set background=dark
colorscheme solarized
Manual Installation
Or install with Vundle
Then put this in your .vimrc
[core]
editor = vim
" Turn on spell checking for commit messages
" and automatic wrapping at the recommeneded 72 characters
autocmd Filetype gitcommit setlocal spell textwidth=72
@adamCoder
adamWadeHarris.com