Skip to content

Instantly share code, notes, and snippets.

@helpermethod
Last active May 18, 2018 09:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helpermethod/b1f92e6efab7ca5c523c048627e91588 to your computer and use it in GitHub Desktop.
Save helpermethod/b1f92e6efab7ca5c523c048627e91588 to your computer and use it in GitHub Desktop.
A minimal .vimrc for the occasional power user
set nocompatible
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall | source $MYVIMRC
endif
call plug#begin()
Plug 'croaker/mustang-vim'
Plug 'vim-airline/vim-airline'
Plug 'Raimondi/delimitMate'
call plug#end()
let delimitMate_expand_cr=1
set background=dark
silent! colorscheme mustang
set laststatus=2
set number
set relativenumber
set incsearch
set ignorecase
set smartcase
set hlsearch
nnoremap <CR> :nohlsearch<CR><CR>
set expandtab
set shiftwidth=2
set softtabstop=2
@helpermethod
Copy link
Author

helpermethod commented May 18, 2018

screenshot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment