Skip to content

Instantly share code, notes, and snippets.

@scott-riley
Last active January 25, 2018 19:15
Show Gist options
  • Save scott-riley/f49325cceb9c34ab437ecaa0c604e2b6 to your computer and use it in GitHub Desktop.
Save scott-riley/f49325cceb9c34ab437ecaa0c604e2b6 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'SirVer/ultisnips'
Plugin 'epilande/vim-es2015-snippets'
Plugin 'epilande/vim-react-snippets'
Plugin 'othree/html5.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx'
" Plugin 'isRuslan/vim-es6'
Plugin 'yuttie/hydrangea-vim'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-ragtag'
Plugin 'tpope/vim-commentary'
Plugin 'airblade/vim-gitgutter'
Plugin 'mhinz/vim-startify'
Plugin 'rakr/vim-one'
Plugin 'Valloric/MatchTagAlways'
Plugin 'Yggdroot/indentLine'
call vundle#end() " required
filetype plugin indent on " required
set rtp+=~/.vim/bundle/ctrlp.vim
set rtp+=~/.fzf
let g:ctrlp_map = '<C-p>'
let g:strlp_cmd = 'CtrlP'
let g:jsx_ext_required = 0
let g:javascript_plugin_flow = 1
set number
set numberwidth=4
source ~/.vim_runtime/vimrcs/basic.vim
source ~/.vim_runtime/vimrcs/plugins_config.vim
source ~/.vim_runtime/vimrcs/extended.vim
try
source ~/.vim_runtime/my_configs.vim
catch
endtry
:syntax enable
syntax on
color dracula
highlight link xmlEndTag xmlTag
set background=dark
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' }
let g:mta_filetypes = {
\ 'html' : 1,
\ 'xhtml' : 1,
\ 'xml' : 1,
\ 'jinja' : 1,
\ 'javascript' : 1,
\ 'javascript.jsx' : 1,
\}
" Default fzf layout
" " - down / up / left / right
let g:fzf_layout = { 'down': '~40%' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment