Skip to content

Instantly share code, notes, and snippets.

@edbrannin
Forked from eccyan/.vimrc
Created January 30, 2012 14:43
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edbrannin/1704768 to your computer and use it in GitHub Desktop.
Save edbrannin/1704768 to your computer and use it in GitHub Desktop.
.vimrc for iOS Vim
syntax on
set autoindent
set number
set tabstop=2
set shiftwidth=2
set expandtab
set ruler
set incsearch
set hlsearch
set ignorecase
set smartcase
let mapleader = ","
nnoremap <leader><space> :noh<cr>
" Tap to command line mode
nnoremap <LeftMouse> :
" Tap to quit insert mode
inoremap <LeftMouse> <ESC>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment