Vundle - Plugins instalados, mas não carregando

7

Instalei o vundle na minha caixa do Ubuntu, mas quando carrego o vim, nenhum dos plugins é carregado. Meu vimrc:

runtime! debian.vim
set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
"set rtp+=~/.vim/bundle
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 'reedes/vim-thematic'
Plugin 'bling/vim-airline'

" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin 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









" """""""""""""""""""""""""""""""""""""ORIGINAL STUFF BELOW"""""""



" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
" the call to :runtime you can find below.  If you wish to change any of those
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
" will be overwritten everytime an upgrade of the vim packages is performed.
" It is recommended to make changes after sourcing debian.vim since it alters
" the value of the 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
" runtime! debian.vim

" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'.  Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible

" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
"if has("syntax")
syntax on
set number
set ruler
"endif

" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark

" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
"  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
"endif

" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
"  filetype plugin indent on
"endif

" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
"set showcmd        " Show (partial) command in status line.
"set showmatch      " Show matching brackets.
"set ignorecase     " Do case insensitive matching
"set smartcase      " Do smart case matching
"set incsearch      " Incremental search
"set autowrite      " Automatically save before commands like :next and :make
"set hidden     " Hide buffers when they are abandoned
"set mouse=a        " Enable mouse usage (all modes)

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif

: saídas do PluginList ...

" My Plugins                        
Plugin 'gmarik/Vundle.vim'                                           
Plugin 'reedes/vim-thematic'                                          
Plugin 'bling/vim-airline' 

Eu não mudei nenhuma outra configuração, esta é minha primeira tentativa de usar plugins do Vim.

    
por CS Student 18.07.2014 / 20:01

1 resposta

5
  1. Nunca faça nada em /etc/vim

    • Como o Vim segue uma ordem de carregamento estrita e mexer nos arquivos e diretórios padrão tornará o Vim instável. Algumas das coisas que você pode fazer podem funcionar, outras não ... é só você e sua sorte.

    • Porque os upgrades subsequentes substituirão algumas ou todas as suas alterações, tornando-as inúteis.

    • Porque é uma prática comum e em todo sistema operacional - e, bem ... na vida real também - para fazer seu configuração em seu $HOME .

  2. Você deve criar ~/.vim/ e ~/.vimrc você mesmo.

    Por ser bem comportado, o Vim não faz nada na sua $HOME na instalação. É sua responsabilidade criar os arquivos e diretórios necessários para a personalização:

    $ cd
    $ mkdir .vim
    $ touch .vimrc
    

    Nesse ponto, você deve ter um diretório ~/.vim vazio e um arquivo ~/.vimrc vazio. Parece que você já tem um diretório ~/.vim/ para poder pular essa etapa.

  3. Reverta /etc/vim para seu estado original.

    Remova tudo o que você adicionou a /etc/vim . Se não tiver certeza, desinstalar e reinstalar o pacote vim-gnome ou vim-gtk deve ajudar.

  4. Refaça toda a sua configuração em $HOME .

    Se você insistir em usar o Vundle, é assim que o seu ~/.vimrc deve ser:

    filetype off
    
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    
    Plugin 'gmarik/Vundle.vim'
    Plugin 'reedes/vim-thematic'
    Plugin 'bling/vim-airline'
    
    call vundle#end()
    
    filetype plugin indent on
    
  5. Na verdade, instale seus plugins.

    Escreva seu ~/.vimrc para o disco e saia do Vim com:

    :wq
    

    e emita o seguinte comando:

    $ vim +PluginInstall
    

Como novos usuários do Vim, você deve encontrar maneiras mais produtivas de gastar seu tempo e células cerebrais do que mexer com os plugins sem sentido que está tentando instalar usando um gerenciador de plugins sem sentido, especialmente se não tiver um bom conhecimento de a linha de comando do UNIX. Aqui está uma lista não exaustiva de sugestões:

  • familiarize-se com a linha de comando e a maneira UNIX em geral,
  • siga $ vimtutor pelo menos algumas vezes,
  • leia as primeiras 30 linhas de :help e envie-as para a memória, pois são os comandos mais úteis do Vim que você aprenderá,
  • leia :help usr_01.txt até, pelo menos, :help usr_08.txt .

Até que você esteja mais confortável com a coisa toda, eu aconselho que você fique longe de plugins (e gerenciadores de plugins desnecessários) para que você possa se concentrar no próprio Vim.

    
por 19.07.2014 / 13:54