Created
January 28, 2012 01:08
-
-
Save mostlyobvious/1691917 to your computer and use it in GitHub Desktop.
minimum viable console setup
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
"\e[A":history-search-backward | |
"\e[B":history-search-forward | |
set completion-ignore-case on | |
set show-all-if-ambiguous on |
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 number | |
set expandtab | |
set laststatus=2 | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set hlsearch | |
set incsearch | |
set smartcase | |
set ignorecase | |
set nowrapscan | |
syntax on | |
colorscheme slate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment