settings

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

.vimrc (349B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set tabstop=4

set shiftwidth=4

set smarttab

set showcmd

set ruler

set autoindent

imap <M-Space> <Esc>

" Default mapping
let g:multi_cursor_use_default_mapping=0
let g:multi_cursor_start_key='<C-l>'
let g:multi_cursor_next_key='<C-l>'
let g:multi_cursor_prev_key='<C-p>'
let g:multi_cursor_skip_key='<C-x>'
let g:multi_cursor_quit_key='<Esc>'