Доброе время суток!
Помогите, пожалуйста не могу разобраться с вопросом по поводу autocomplit у меня так и не работает для языков программирования Python, PHP, golang, javascript.
Вот мой .vimrc
" set encoding=utf-8
set nocompatible
set number
filetype off
set laststatus=2
set noshowmode
set cmdheight=1
set updatetime=50
filetype off
set shellslash
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin('~/.vim/bundle/')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'flazz/vim-colorschemes'
Plugin 'tpope/vim-surround'
Plugin 'itchyny/lightline.vim'
Plugin 'ryanoasis/vim-devicons'
Plugin 'dracula/vim', {'name':'dracula'}
Plugin 'chriskempson/base16-vim'
Plugin 'StanAngelloff/php.vim'
Plugin 'othree/html5.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'fatih/vim-go'
Plugin 'ncm2/ncm2'
Plugin 'shawncplus/phpcomplete.vim'
Plugin 'phpactor/phpactor'
Plugin 'phpactor/ncm2-phpactor'
" Plugin 'ludovicchabant/vim-gutentags'
" Plugin 'flazz/vim-colorschemes'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-colorscheme-switcher'
call vundle#end() " required
filetype plugin indent on " required
let g:phpcomplete_mappings = {
\ 'jump_to_def': ',g',
\ 'jump_to_def_tabnew': ',t',
\ }
let g:phpcomplete_mappings = {
\ 'jump_to_def': '<C-]>',
\ 'jump_to_def_split': '<C-W><C-]>',
\ 'jump_to_def_vsplit': '<C-W><C-\>',
\ 'jump_to_def_tabnew': '<C-W><C-[>',
\}
set tabstop=4
set shiftwidth=4
set smarttab
set expandtab
set softtabstop=4
set autoindent
let python_highlight_all = 1
set t_Co=256
" autocmd BufWritePre *.py normal m`:%s/\s\+$//e ``
" autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
syntax on
set termencoding=utf-8
set novisualbell
set t_vb=
set backspace=indent,eol,start whichwrap+=<,>,[,]
set showtabline=1
" let g:guqtentags_enabled=1
set nowrap
set linebreak
set nobackup
set noswapfile
set fileencodings=utf8,cp1251
" Preview http://vimcolors.com/
colorscheme sierra
set clipboard=unnamed
set ruler
set hidden
nnoremap <C-Left> :tabprevious<CR>
nnoremap <C-Right> :tabnext<CR>
nnoremap <C-n> :tabnew<CR>
nnoremap <C-q> :q<CR>
nnoremap <C-s> :w<CR>
Буду признателен за помощь