Created
May 1, 2018 05:08
-
-
Save godkinmo/b68b9b908f016ecd131afb0b3ba54d5e to your computer and use it in GitHub Desktop.
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
imap hh <Esc> | |
set nocompatible | |
set encoding=utf-8 | |
set laststatus=2 | |
set nowrap " don't wrap lines | |
set tabstop=4 " a tab is four spaces | |
set smarttab | |
set tags=tags | |
set softtabstop=4 " when hitting <BS>, pretend like a tab is removed, even if spaces | |
set expandtab " expand tabs by default (overloadable per file type later) | |
set shiftwidth=4 " number of spaces to use for autoindenting | |
set shiftround " use multiple of shiftwidth when indenting with '<' and '>' | |
set backspace=indent,eol,start " allow backspacing over everything in insert mode | |
set autoindent " always set autoindenting on | |
set copyindent " copy the previous indentation on autoindenting | |
set number " always show line numbers | |
set ignorecase " ignore case when searching | |
set smartcase " ignore case if search pattern is all lowercase, | |
set timeout timeoutlen=200 ttimeoutlen=100 | |
set visualbell " don't beep | |
set noerrorbells " don't beep | |
set mouse=a | |
filetype off " Required | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
Bundle 'gmarik/vundle' | |
" Bundles Here | |
Bundle 'altercation/vim-colors-solarized' | |
Bundle 'plasticboy/vim-markdown' | |
Bundle 'othree/html5.vim' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'bling/vim-airline' | |
Bundle 'airblade/vim-gitgutter' | |
Bundle 'tpope/vim-fugitive' | |
Plugin 'vim-airline/vim-airline-themes' | |
filetype plugin indent on " Required | |
" Some settings to enable the theme: | |
syntax enable | |
set background=dark | |
let g:airline_theme='papercolor' | |
colorscheme solarized |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment