Change color scheme
colorscheme candycodeShow line numbers
set nu!Set gVim font
set guifont=Consolas:h12:cRUSSIANChange language
set langmenu=en_US
let $LANG='en_US'
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vimChange encoding
set encoding=utf8Set TAB size
set softtabstop=2Enable auto indentation
set autoindentEnable indentation according to file type
filetype plugin indent onConfigure paired characters
inoremap ' ''<ESC>ha
inoremap " ""<ESC>ha
inoremap ` ``<ESC>ha
inoremap ( ()<ESC>ha
inoremap [ []<ESC>ha
inoremap { {}<ESC>ha
inoremap /* /** */<ESC>2haEnable 256 colors in terminal
set t_Co=256Change default netrw window size
let g:netrw_winsize=25Enable preview in netrw
let g:netrw_preview=1Set commands and search patterns history (default is 50)
set history=100Create new file in c:\program\ files\vim\vimfiles\ftplugin\php_mymaps.vim.
Put colon ,, semicolon ; at EOL:
inoremap ;; <C-o>A;
inoremap ,, <C-o>A,Spaces around =, =>
inoremap =<space> <space>=<space>
inoremap =><space> <space>=><space>