Skip to content
Snippets Groups Projects
.vimrc 4.19 KiB
" Vundle configuration
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 'sjbach/lusty.git'
Plugin 'kien/ctrlp.vim.git'
Plugin 'arnaud-lb/vim-php-namespace.git'
Plugin 'Lokaltog/vim-powerline.git'
Plugin 'tpope/vim-fugitive.git'
Plugin 'airblade/vim-gitgutter'

" Here should be other plugins
" Bundle 'joonty/vim-phpqa.git'

Bundle 'danro/rename.vim'
Bundle 'tobyS/vmustache'
Bundle 'SirVer/ultisnips'
Bundle 'tobyS/pdv'

" All of your Plugins must be added before the following line
call vundle#end()            " required

filetype on
filetype plugin on
filetype indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList          - list configured plugins
" :PluginInstall(!)    - install (update) plugins
" :PluginSearch(!) foo - search (or refresh cache first) for foo
" :PluginClean(!)      - confirm (or auto-approve) removal of unused plugins
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line






" Basics
set t_Co=256
colorscheme molokai
syntax on
set number
set tabstop=4
set expandtab
set smartindent
"set autoindent
set shiftwidth=4
set directory=/tmp/

set nobackup                    " Don't make a backup before overwriting a file.
set nowritebackup               " And again.

set wildmenu                    " Better completion
set wildmode=list:longest       " BASH style completion
set wildignore=.svn,CVS,.git,.hg,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif,*.pyc,*.pyo,*.log,**/cache/**,**/logs/**,**/zend/**,**/vendor/**/vendor/**,web/css,web/js,web/bundles,*/project/*,*/target/*,*.hi
set incsearch                   " Highlight matches as you type.
set hlsearch                    " Highlight matches.