Skip to content

Instantly share code, notes, and snippets.

@dragon788
Forked from alexyoung/.vimrc
Last active August 29, 2015 14:20
Show Gist options
  • Save dragon788/80df678a39bf29f2208c to your computer and use it in GitHub Desktop.
Save dragon788/80df678a39bf29f2208c to your computer and use it in GitHub Desktop.
" vim:fdm=marker
" Editor basics {{{
" Behave like Vim instead of Vi
set nocompatible
" Show a status line
set laststatus=2
" Show the current cursor position
set ruler
" Enable syntax highlighting
syn on
" }}}
" Mouse {{{
" Send more characters for redraws
set ttyfast
" Enable mouse use in all modes
set mouse=a
" Set this to the name of your terminal that supports mouse codes.
" Must be one of: xterm, xterm2, netterm, dec, jsbterm, pterm
set ttymouse=xterm2
" }}}
" Disable arrow keys {{{
noremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
" }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment