Skip to content

Instantly share code, notes, and snippets.

@rickytato
Created November 21, 2016 17:39

Revisions

  1. rickytato created this gist Nov 21, 2016.
    27 changes: 27 additions & 0 deletions vimrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    " 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