Skip to content

Instantly share code, notes, and snippets.

@BraedonWooding
Created March 21, 2018 11:23
Show Gist options
  • Save BraedonWooding/2c677e7004a9ab1ec4afe34c01120fe8 to your computer and use it in GitHub Desktop.
Save BraedonWooding/2c677e7004a9ab1ec4afe34c01120fe8 to your computer and use it in GitHub Desktop.
set nocompatible " be improved, required
filetype off " required
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-surround'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'altercation/vim-colors-solarized'
Plug 'ervandew/supertab'
Plug 'honza/vim-snippets'
Plug 'plasticboy/vim-markdown'
Plug 'elzr/vim-json'
Plug 'rust-lang/rust.vim'
Plug 'hdima/python-syntax'
Plug 'latex-box-team/latex-box'
Plug 'wolfgangmehner/lua-support'
Plug 'wolfgangmehner/c-support'
Plug 'kien/rainbow_parentheses.vim'
Plug 'bronson/vim-trailing-whitespace'
Plug 'bling/vim-airline'
Plug 'majutsushi/tagbar', { 'commit': 'd4a08c33e516314f35c541b34fe7f909c2ff4381' }
Plug 'scrooloose/nerdcommenter'
Plug 'vim-airline/vim-airline-themes'
Plug 'easymotion/vim-easymotion'
Plug 'keith/swift.vim'
Plug 'liuchengxu/space-vim-dark'
" Uncomment for github variant
" Plugin 'DOML-DataOrientedMarkupLanguage/DOML-VIM'
" Uncomment for local variant
" Plugin 'file:///Users/Braedon/Desktop/Vim-DOML'
call plug#end() " required
filetype plugin indent on " required
syntax enable
set background=dark
set number
colorscheme space-vim-dark
hi Comment cterm=italic
set shiftwidth=4
set softtabstop=4
set tabstop=4
set nocursorcolumn
set nocursorline
set norelativenumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment