Last active
August 29, 2015 14:04
-
-
Save ansgar-forestier/6a8a96a8403fc19d1df0 to your computer and use it in GitHub Desktop.
My vimrc
This file contains 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 tabstop=4 | |
set shiftwidth=4 | |
set smarttab | |
set et | |
set showmatch | |
set hlsearch | |
set incsearch | |
set ignorecase | |
set listchars=tab:·· | |
set list | |
set ffs=unix,dos,mac | |
set fencs=utf-8,cp1251,koi8-r,ucs-2,cp866 | |
if !has('gui_running') | |
set mouse= | |
endif | |
set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment