Created
June 18, 2012 22:16
-
-
Save kaimallea/2951086 to your computer and use it in GitHub Desktop.
Vim Terminal Config
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 nocompatible | |
filetype on | |
filetype plugin on | |
filetype indent on | |
syntax on | |
set ruler | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set showcmd | |
set number | |
set smartindent | |
set autoindent | |
set wrap | |
set textwidth=79 | |
set formatoptions=qrn1 | |
set incsearch | |
set hlsearch | |
set ignorecase | |
set smartcase | |
set splitbelow | |
set t_Co=256 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment