Created
February 1, 2016 20:41
-
-
Save yvesh/6b2ffe2002bcec7432db 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
""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Yves Hoppe | |
" [email protected] | |
" | |
" Version: | |
" 1.1.3 - 2016/02/01 | |
" | |
""""""""""""""""""""""""""""""""""""""" | |
""""""""""""""""""""""""""""""""""""""" | |
" -> General | |
""""""""""""""""""""""""""""""""""""""" | |
" Enable filetype plugins | |
filetype plugin on | |
filetype indent on | |
set number | |
set display+=lastline | |
" Set to auto read when a file is changed from the outside | |
set autoread | |
" Sets how many lines of history VIM has to remember | |
set history=2000 | |
" Set 7 lines to the cursor - when moving vertically using j/k | |
set so=7 | |
" Height of the command bar | |
set cmdheight=2 | |
" Ignore case when searching | |
set ignorecase | |
" When searching try to be smart about cases | |
set smartcase | |
" Highlight search results | |
set hlsearch | |
" Makes search act like search in modern browsers | |
set incsearch | |
" For regular expressions turn magic on | |
set magic | |
" Enable syntax highlighting | |
syntax enable | |
colorscheme desert | |
set background=dark | |
" Set extra options when running in GUI mode | |
if has("gui_running") | |
set guioptions-=T | |
set guioptions+=e | |
set t_Co=256 | |
set guitablabel=%M\ %t | |
endif | |
set encoding=utf8 | |
set nobackup | |
set nowb | |
set noswapfile | |
" Tab instead of spaces | |
set expandtab | |
set smarttab | |
set shiftwidth=4 | |
set tabstop=4 | |
set lbr | |
set tw=500 | |
set ai "Auto indent | |
set si "Smart indent | |
set wrap "Wrap lines | |
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE | |
set runtimepath^=~/.vim/bundle/neobundle.vim/ | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
NeoBundle 'tpope/vim-fugitive' | |
NeoBundle 'flazz/vim-colorschemes' | |
NeoBundle 'vim-airline/vim-airline' | |
NeoBundle 'vim-airline/vim-airline-themes' | |
NeoBundle 'tomasr/molokai' | |
call neobundle#end() | |
filetype plugin indent on | |
NeoBundleCheck | |
" Integrate with powerline fonts | |
let g:airline_powerline_fonts = 1 | |
" Molokai | |
let g:molokai_original = 1 | |
" Display status bar | |
set laststatus=2 | |
" colorscheme molokai | |
" let g:airline_theme='solarized' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment