Skip to content

Instantly share code, notes, and snippets.

@jonahgeorge
Last active December 16, 2016 02:53
Show Gist options
  • Save jonahgeorge/4a2c577f0f1344e0d20edb605ef379cf to your computer and use it in GitHub Desktop.
Save jonahgeorge/4a2c577f0f1344e0d20edb605ef379cf to your computer and use it in GitHub Desktop.
tap "neovim/neovim"
tap "hhvm/hhvm"
brew "zsh"
brew "git"
brew "neovim"
brew "hhvm"
"Start dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
set runtimepath^=/Users/jgeorge/repos/github.com/Shougo/dein.vim
call dein#begin(expand('/Users/jgeorge/.config/nvim/bundle/'))
call dein#add('stephpy/vim-php-cs-fixer')
call dein#add('Shougo/dein.vim')
call dein#add('Shougo/deoplete.nvim')
call dein#add('Shougo/unite.vim')
call dein#add('terryma/vim-multiple-cursors')
call dein#add('editorconfig/editorconfig-vim')
call dein#add('majutsushi/tagbar')
"call dein#add('scrooloose/syntastic')
call dein#add('airblade/vim-gitgutter')
call dein#add('jceb/vim-orgmode')
call dein#add('junegunn/fzf.vim')
call dein#add('/usr/local/opt/fzf')
call dein#add('tpope/vim-fugitive')
call dein#add('rust-lang/rust.vim')
call dein#end()
filetype plugin indent on
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
"End dein Scripts-------------------------
" let mapleader = ","
let g:fzf_files_options = "-i"
nmap <C-o> :Files<CR>
let g:deoplete#enable_at_startup = 1
" let g:syntastic_always_populate_loc_list = 1
" let g:syntastic_auto_loc_list = 1
" let g:syntastic_check_on_open = 1
" let g:syntastic_check_on_wq = 0
"
" let g:php_cs_fixer_config_file = '.php_cs'
" let g:php_cs_fixer_php_path = "php"
" let g:php_cs_fixer_enable_default_mapping = 1
" let g:php_cs_fixer_dry_run = 0
" let g:php_cs_fixer_verbose = 0
"
" nnoremap <silent><Leader><C-]> <C-w><C-]><C-w>T
"
" " The Silver Searcher
" if executable('ag')
" " Use ag over grep
" set grepprg=ag\ --nogroup\ --nocolor
"
" " Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
" let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
"
" " ag is fast enough that CtrlP doesn't need to cache
" let g:ctrlp_use_caching = 0
" endif
"
" command -nargs=+ -complete=file -bar Ag silent! grep! <args>|cwindow|redraw!
" nnoremap \ :Ag<SPACE>
"
" " set statusline+=%#warningmsg#
" " set statusline+=%{SyntasticStatuslineFlag()}
" " set statusline+=%*
set expandtab
set shiftwidth=2
set softtabstop=2
set cursorline
set number
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment