Skip to content

Instantly share code, notes, and snippets.

@waf
Last active December 22, 2016 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save waf/cf063ca300063e101fa8 to your computer and use it in GitHub Desktop.
Save waf/cf063ca300063e101fa8 to your computer and use it in GitHub Desktop.
Simple Window Vim Configuration: %UserProfile%\_vimrc
" standard vim options
set guifont=Consolas:h14:cANSI
set nocompatible
set backspace=indent,eol,start
set guioptions-=T
syntax enable
set tabstop=4
set shiftwidth=4
set expandtab
set ignorecase
set smartcase
set smarttab
set smartindent
set wildmenu
set incsearch
set lazyredraw
set ttyfast
set nowrap
set t_Co=256
set visualbell
set visualbell t_vb=
set encoding=utf-8
set clipboard=unnamed
set ruler
set number
set relativenumber
set ofu=syntaxcomplete#Complete
set laststatus=2
filetype plugin indent on
set listchars=tab:>\ ,trail:-,extends:>,precedes:<,nbsp:+
set formatoptions+=j " Delete comment character when joining commented lines
runtime! macros/matchit.vim
colorscheme desert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment