VundleVim / Vundle.vim

Vundle, the plug-in manager for Vim
http://github.com/VundleVim/Vundle.Vim
MIT License
23.88k stars 2.57k forks source link

Not working plugins #664

Closed tanrax closed 8 years ago

tanrax commented 8 years ago

Since the last update me nothing works.

My settings

" CONFIGURACION

set nocompatible            

"Vundle manage
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

filetype off               
filetype plugin indent on
syntax on
set so=15
set spelllang=es
set number
set hlsearch
set nobomb
set ignorecase
set smartcase
set autoindent
set laststatus=2
set ar "Auto carga cambios en archivo, sin preguntar
set background=dark
colorscheme base16-default
imap `\ <Esc>
set tabstop=4      "Decides cuantos espacios es una tabulación 
set shiftwidth=4
set noexpandtab    "No convierte tabulaciones en espacio (Lo hace por defecto) 
"Clear last search highlighting
map <Space> :noh<cr>
" Quita el scroll en MacVim
set guioptions-=L
set guioptions-=r
set guioptions-=T
"Session-vim
let g:session_autosave = 'yes'
let g:session_autoload = 'yes'
let g:session_lock_directory = '/var/lock'
"NerdTree
map <C-n> :NERDTreeToggle<CR>
set autochdir
let NERDTreeChDirMode=2
let NERDTreeIgnore = ['\.pyc$', '\.swp$']
let NERDTreeShowHidden=1
"Tagbar
nmap <C-m> :TagbarToggle<CR>
let g:tagbar_ctags_bin = '/usr/local/Cellar/ctags/5.8_1/bin/ctags'
"Multicursor
let g:multi_cursor_next_key='<C-j>'
nmap  :setlocal spell spelllang=es_es<cr>
"Autocompletado
let g:neocomplcache_enable_at_startup = 1
"jsBeatify
map <c-f> :call JsBeautify()<cr>
autocmd FileType javascript noremap <buffer>  <c-f> :call JsBeautify()<cr>
autocmd FileType html noremap <buffer> <c-f> :call HtmlBeautify()<cr>
autocmd FileType css noremap <buffer> <c-f> :call CSSBeautify()<cr>
"EasyMotion
let g:EasyMotion_do_mapping = 0 
nmap s <Plug>(easymotion-s)
"CtrlP auto cache clearing.
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git'
function! SetupCtrlP()
  if exists("g:loaded_ctrlp") && g:loaded_ctrlp
      augroup CtrlPExtension
      autocmd!
      autocmd FocusGained  * CtrlPClearCache
      autocmd BufWritePost * CtrlPClearCache
      augroup END
  endif
endfunction
if has("autocmd")
  autocmd VimEnter * :call SetupCtrlP()
endif")"
"Yank Ring
map <C-g> :YRShow<CR>
let g:yankring_replace_n_pkey = '<C-e>'
let g:yankring_replace_n_nkey = '<C-h>'
let g:yankring_history_dir = '/Users/androsfenollosa/Documents'
"PHP
 function! PhpSyntaxOverride()
   hi! def link phpDocTags  phpDefine
     hi! def link phpDocParam phpType
     endfunction

     augroup phpSyntaxOverride
       autocmd!
         autocmd FileType php call PhpSyntaxOverride()
         augroup END
"Compilar Python -  Ctrl+l run
autocmd BufRead *.py set makeprg=python\ -c\ \"import\ py_compile,sys;\ sys.stderr=sys.stdout;\ py_compile.compile(r'%')\"
autocmd BufRead *.py set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
autocmd BufRead *.py nmap <C-l> :w !python %<CR>
" Incsearch
map /  <Plug>(incsearch-forward)
map ?  <Plug>(incsearch-backward)
map g/ <Plug>(incsearch-stay)
" Typescript
let g:typescript_indent_disable = 1

Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/nerdcommenter'
Plugin 'tomasr/molokai'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
Plugin 'mattn/emmet-vim'
Plugin 'honza/vim-snippets'
Plugin 'othree/html5.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'godlygeek/tabular'
Plugin 'kien/rainbow_parentheses.vim'
Plugin 'xolox/vim-session'
Plugin 'gorodinskiy/vim-coloresque'
Plugin 'bling/vim-airline'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'nono/jquery.vim'
Plugin 'xolox/vim-misc'
Plugin 'maksimr/vim-jsbeautify'
Plugin 'rizzatti/dash.vim'
Plugin 'jiangmiao/auto-pairs'
Plugin 'YankRing.vim'
Plugin 'tpope/vim-repeat'
Plugin 'StanAngeloff/php.vim'
Plugin 'shawncplus/phpcomplete.vim'
Plugin 'xsbeats/vim-blade'
Plugin 'rking/ag.vim'
Plugin 'gregsexton/MatchTag'
Plugin 'davidhalter/jedi-vim'
Plugin 'junegunn/goyo.vim'
Plugin 'haya14busa/incsearch.vim'
Plugin 'Shougo/neocomplcache.vim'
Plugin 'vitalk/vim-simple-todo'
Plugin 'chriskempson/base16-vim'
Plugin 'majutsushi/tagbar'
Plugin 'mklabs/vim-backbone'

" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
gmarik commented 8 years ago

@tanrax what's the error? Please describe "nothing works"

tanrax commented 8 years ago

I can not use any plugins. They do not work. In contrast with PluginList I see them all.

ryanoasis commented 8 years ago

@tanrax No errors though on any Vundle commands or other commands in general (:echo messages) ?

wsdjeg commented 8 years ago

please add call vundle#end()after plugin list

wsdjeg commented 8 years ago

" Keep Plugin commands between vundle#begin/end.

tanrax commented 8 years ago

Perfect! Thanks

wsdjeg commented 8 years ago
set nocompatible
syntax on
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
"add your plugin here
call vundle#end()
"add all your func and autocmd here
filetype plugin indent on
"add some special autocmd fletype here
ryanoasis commented 8 years ago

I did notice that but I wasn't sure if the entire vimrc was pasted. Nice!

Closing for now (reopen if needed)

gmarik commented 8 years ago

@wsdjeg good catch! Thanks guys!