Skip to content

Instantly share code, notes, and snippets.

@NoahTheDuke
Created November 15, 2013 14:14
Show Gist options
  • Save NoahTheDuke/7484939 to your computer and use it in GitHub Desktop.
Save NoahTheDuke/7484939 to your computer and use it in GitHub Desktop.
Error Finding in my vim set-up
" nocompatible is a must, as is utf-8
set nocompatible
filetype off " required!
set rtp+=$HOME/.vim/bundle/neobundle.vim/
call neobundle#rc(expand('~/.vim/bundle/'))
" let Vundle manage Vundle
" required!
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'davidhalter/jedi-vim'
filetype plugin indent on " required!
NeoBundleCheck
set expandtab
@NoahTheDuke
Copy link
Author

expandtab is required, or jedi-vim returns an error when trying to load the (dot) completion list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment