Skip to content

Instantly share code, notes, and snippets.

@mat-mcloughlin
Last active August 8, 2016 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mat-mcloughlin/7038f898d1ebe00c8e3012d30cff96cc to your computer and use it in GitHub Desktop.
Save mat-mcloughlin/7038f898d1ebe00c8e3012d30cff96cc to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'ctrlpvim/ctrlp.vim'
Plug 'flazz/vim-colorschemes'
Plug 'tpope/vim-vinegar'
Plug 'Chiel92/vim-autoformat'
Plug 'powerline/powerline', { 'rtp': 'powerline/bindings/vim/' }
Plug 'plasticboy/vim-markdown'
Plug 'junegunn/goyo.vim'
call plug#end()
let g:netrw_liststyle=3
set swapfile
set dir=~/temp/swp
filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab
set relativenumber
set number
colorscheme molokai
" powerline
set guifont=Inconsolata\ for\ Powerline:h15
let g:Powerline_symbols = 'fancy'
set encoding=utf-8
set t_Co=256
set fillchars+=stl:\ ,stlnc:\
set term=xterm-256color
set termencoding=utf-8
set laststatus=2
"markdown
let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_conceal = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment