Skip to content

Instantly share code, notes, and snippets.

@jonahgeorge
Created October 9, 2016 17:30
Show Gist options
  • Save jonahgeorge/32baf717a8e84fa4ca66406a8607ff60 to your computer and use it in GitHub Desktop.
Save jonahgeorge/32baf717a8e84fa4ca66406a8607ff60 to your computer and use it in GitHub Desktop.
"NeoBundle Scripts-----------------------------
if has('vim_starting')
set runtimepath+=/Users/jonahgeorge/.config/nvim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('/Users/jonahgeorge/.config/nvim/bundle'))
" Let NeoBundle manage NeoBundle
NeoBundleFetch 'Shougo/neobundle.vim'
" PHP
" NeoBundle 'jwalton512/vim-blade'
" NeoBundle 'stephpy/vim-php-cs-fixer'
" General
NeoBundle 'editorconfig/editorconfig-vim'
NeoBundle 'Shougo/deoplete.nvim'
NeoBundle 'terryma/vim-multiple-cursors'
NeoBundle 'ctrlpvim/ctrlp.vim'
NeoBundle 'easymotion/vim-easymotion'
call neobundle#end()
filetype plugin indent on
NeoBundleCheck
"End NeoBundle Scripts-------------------------
filetype indent off
let mapleader = ","
" easymotion
map <Leader> <Plug>(easymotion-prefix)
" deoplete
let g:deoplete#enable_at_startup = 1
let g:deoplete#enable_smart_case = 1
" php-cs-fixer
" let g:php_cs_fixer_level = "all"
" let g:php_cs_fixer_config = "default"
" let g:php_cs_fixer_fixers_list = "align_double_arrow,align_equals,linefeed,short_tag,indentation"
" let g:php_cs_fixer_enable_default_mapping = 1
" let g:php_cs_fixer_dry_run = 0
" let g:php_cs_fixer_verbose = 0
syntax on
set number
set expandtab
set shiftwidth=2
set softtabstop=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment