From 7ff54552eb4a9f57eb66dc82c415fb12bd529b11 Mon Sep 17 00:00:00 2001 From: Mario Pabon Date: Fri, 12 Aug 2016 20:13:21 -0400 Subject: [PATCH] Vim FTW --- vimrc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 vimrc diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..bbaf2d6 --- /dev/null +++ b/vimrc @@ -0,0 +1,20 @@ +set nocompatible " get rid of Vi compatibility mode. SET FIRST! +filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON] +set t_Co=256 " enable 256-color mode. +syntax enable " enable syntax highlighting (previously syntax on). +colorscheme default " set colorscheme +set number " show line numbers +set laststatus=2 " last window always has a statusline +filetype indent on " activates indenting for files +set nohlsearch " Don't continue to highlight searched phrases. +set incsearch " But do highlight as you type your search. +set ignorecase " Make searches case-insensitive. +set ruler " Always show info along bottom. +set autoindent " auto-indent +set tabstop=2 " tab spacing +set softtabstop=2 " unify +set shiftwidth=2 " indent/outdent by 4 columns +set shiftround " always indent/outdent to the nearest tabstop +set expandtab " use spaces instead of tabs +set smarttab " use tabs at the start of a line, spaces elsewhere +set nowrap " don't wrap text