scriptencoding utf-8 " Forget being compatible with good ol' vi set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin('~/.vim/vundle') Bundle 'Lokaltog/vim-easymotion' Bundle 'jamessan/vim-gnupg' call vundle#end() let g:UltiSnipsExpandTrigger="" let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" set hls set is set ignorecase set smartcase " Why is this not a default set hidden " Don't update the display while executing macros set lazyredraw " At least let yourself know what mode you're in set showmode " Enable enhanced command-line completion. Presumes you have compiled " with +wildmenu. See :help 'wildmenu' set wildmenu set scrolloff=5 set wildmode=longest,list set backspace=indent,eol,start if has('mouse') set mouse=a endif set nobackup syntax enable set bg=dark set autoindent set tabstop=4 set shiftwidth=4 set softtabstop=4 set ff=unix set tags=tags; set showbreak=↪ set relativenumber set number colors molokai set exrc " enable per-directory .vimrc files set secure " disable unsafe commands in local .vimrc files " Get that filetype stuff happening filetype on filetype plugin on filetype indent on " Turn on that syntax highlighting syntax on