Skip to content

Instantly share code, notes, and snippets.

@seece
Created August 24, 2014 12:40
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 seece/f0a2c90af09f718a32be to your computer and use it in GitHub Desktop.
Save seece/f0a2c90af09f718a32be to your computer and use it in GitHub Desktop.
gvim settings
set langmenu=en_US.UTF-8 " sets the language of the menu (gvim)
set sw=4
set ts=4
colorscheme slate
noremap ; :
if has('gui_running')
set guifont=Lucida_Console:h10
else
language en " sets the language of the messages / ui (vim)
endif
if exists('+colorcolumn')
set colorcolumn=80
else
au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+', -1)
endif
syntax on
set incsearch
set autoindent
set smartindent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment