Skip to content

Instantly share code, notes, and snippets.

@karrikas
Last active September 18, 2015 21:10
Show Gist options
  • Save karrikas/aac66fe70f9ceeab321a to your computer and use it in GitHub Desktop.
Save karrikas/aac66fe70f9ceeab321a to your computer and use it in GitHub Desktop.
Vim configuracion
" Vundle instalatu lehengo
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'joonty/vim-sauce'
Plugin 'scrooloose/nerdtree'
Plugin 'joonty/vim-phpqa.git'
call vundle#end()
filetype plugin indent on
" Set the codesniffer args
let g:phpqa_codesniffer_args = "--standard=Zend"
set runtimepath^=~/.vim/bundle/ctrlp.vim
let g:ctrlp_user_command = 'find %s -type f'
set tabstop=4
set shiftwidth=4
set expandtab
set number
color desert
" Ctrl C + Ctrl V in linux
vmap <C-c> "+yi
vmap <C-x> "+c
vmap <C-v> c<ESC>"+p
imap <C-v> <C-r><C-o>+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment