Skip to content

Instantly share code, notes, and snippets.

@SixFiveSoftware
Created November 28, 2017 15:38
Show Gist options
  • Save SixFiveSoftware/3b66a4eb4b43c656b865fa86cb8e3de7 to your computer and use it in GitHub Desktop.
Save SixFiveSoftware/3b66a4eb4b43c656b865fa86cb8e3de7 to your computer and use it in GitHub Desktop.
xvimrc file for Xcode's xvim plugin
" Case-insensitive searching.
set ignorecase
" But case-sensitive if expression contains a capital letter.
set smartcase
" Default to global substitutions on lines
set gdefault
" Use the system pasteboard
set pasteboard
" Use numbers and relative numbers
set number
set relativenumber
" Key mapping for navigating panes in Xcode
map <C-j> <C-w>j<CR>
map <C-k> <C-w>k<CR>
map <C-l> <C-w>l<CR>
map <C-h> <C-w>h<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment