Skip to content

Instantly share code, notes, and snippets.

@jacquesbh
Last active October 6, 2015 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacquesbh/3040450 to your computer and use it in GitHub Desktop.
Save jacquesbh/3040450 to your computer and use it in GitHub Desktop.
Simple .vimrc for servers
set nocompatible
set encoding=utf-8
filetype on
filetype plugin on
filetype indent on
syntax enable
set background=dark
set number
set laststatus=2
set cmdheight=1
set history=300
set cursorline
set showmatch
set mat=2
set scrolljump=3
set scrolloff=2
set mouse=a
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set smartindent
set autoindent
set listchars=tab:.\ ,trail:.,eol:¬,precedes:◂,extends:▸
set showbreak=↪
set fillchars=vert:│,fold:┄,diff:╱
set hlsearch
set updatetime=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment