Skip to content

Instantly share code, notes, and snippets.

@pakt
Created December 14, 2011 17:15
Show Gist options
  • Save pakt/1477510 to your computer and use it in GitHub Desktop.
Save pakt/1477510 to your computer and use it in GitHub Desktop.
simple linux .vimrc
" http://vimdoc.sourceforge.net/htmldoc/starting.html#vimrc
filetype plugin on
set enc=utf-8
set relativenumber "beware: mutually exclusive with :set number :p
set guioptions-=m "remove menu bar
set guioptions-=T "remove toolbar
set autochdir
set backupdir=/tmp
set noswapfile
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
map <F2> :w<CR>
" Switch between tabs with ctrl + h|l
map <C-h> :tabp<CR>
map <C-l> :tabn<CR>
" Move tabs with alt + h|l
nnoremap <silent> <C-j> :execute 'silent! tabmove ' . (tabpagenr()-2)<CR>
nnoremap <silent> <C-k> :execute 'silent! tabmove ' . tabpagenr()<CR>
set cul " highlight current line
set nocompatible " use vim defaults
set scrolloff=3 " keep 3 lines when scrolling
set ai " set auto-indenting on for programming
set showcmd " display incomplete commands
set nobackup " do not keep a backup file
set ruler " show the current row and column
set hlsearch " highlight searches
set incsearch " do incremental searching
set showmatch " jump to matches when entering regexp
set ignorecase " ignore case when searching
set smartcase " no ignorecase if Uppercase char present
set visualbell t_vb= " turn off error beep/flash
set novisualbell " turn off visual bell
set backspace=indent,eol,start " make that backspace key work the way it should
syntax on " turn syntax highlighting on by default
filetype on " detect type of file
filetype indent on " load indent file for specific file type
set t_RV= " http://bugs.debian.org/608242, http://groups.google.com/group/vim_dev/browse_thread/thread/9770ea844cec3282
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment