Last active
May 24, 2017 19:31
-
-
Save werebus/2007078 to your computer and use it in GitHub Desktop.
A very basic .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 nocompatible | |
set backspace=indent,eol,start | |
filetype plugin indent on | |
set history=50 | |
set ruler | |
set number | |
set showcmd | |
set incsearch | |
set nowrap | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
if &t_Co > 2 | |
syntax on | |
set hlsearch | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment