Skip to content

Instantly share code, notes, and snippets.

@rickytato
Created November 21, 2016 17:39
Show Gist options
  • Save rickytato/2e543598a62a8967247cb5ff74862eb2 to your computer and use it in GitHub Desktop.
Save rickytato/2e543598a62a8967247cb5ff74862eb2 to your computer and use it in GitHub Desktop.
" https://github.com/rickytato/vim-plug
" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-easy-align'
Plug 'https://github.com/junegunn/vim-github-dashboard.git'
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
Plug 'fatih/vim-go', { 'tag': '*' }
Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug '~/my-prototype-plugin'
" https://github.com/rickytato/ansible-vim
Plug 'rickytato/ansible-vim'
call plug#end()
syntax enable
set number
set ts=2
set autoindent
set expandtab
set shiftwidth=2
set cursorline
set showmatch
let python_highlight_all = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment