Created
August 24, 2014 12:40
-
-
Save pekkavaa/f0a2c90af09f718a32be to your computer and use it in GitHub Desktop.
gvim settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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