Skip to content

Instantly share code, notes, and snippets.

@antoinefortin
Created March 27, 2018 21:22
Show Gist options
  • Save antoinefortin/40c7e11add98e0186218829c2c0ee682 to your computer and use it in GitHub Desktop.
Save antoinefortin/40c7e11add98e0186218829c2c0ee682 to your computer and use it in GitHub Desktop.
[vimConf]
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()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'StanAngeloff/php.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'scrooloose/nerdcommenter'
Plugin 'tpope/vim-sensible'
Plugin 'bling/vim-airline'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/syntastic'
Plugin 'altercation/vim-colors-solarized'
Plugin 'shawncplus/phpcomplete.vim'
Plugin 'Shougo/deoplete.nvim'
Plugin 'ctags.vim'
Plugin 'majutsushi/tagbar'
Plugin 'pangloss/vim-javascript'
Plugin 'godlygeek/tabular'
Plugin 'ryanoasis/vim-webdevicons'
Plugin 'joonty/vdebug.git'
Plugin 'rking/ag.vim'
Plugin 'MochaLatte'
Plugin 'airblade/vim-gitgutter'
Plugin 'jacoborus/tender'
Plugin 'chriskempson/base16-vim'
call vundle#end()
filetype plugin indent on
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
Plug 'lvht/phpcd.vim', { 'for': 'php', 'do': 'composer install' }
" Initialize plugin system
call plug#end()
" Color scheme configuration
set background=dark
syntax enable
colorscheme base16-default-dark
" Basic sets
set cul
set number
set tabstop=4
set shiftwidth=4
set synmaxcol=512
set guifont=Meslo\ LG\ M\ Regular\ for\ Powerline\ Nerd\ Font\ Complete:h11
set colorcolumn=120
let g:airline_powerline_fonts = 1
" PLugins
autocmd VimEnter * NERDTree
let g:NERDTreeWinPos = "left"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment