Browse Source

Disable python-mode autocomplete window from opening

Taylor Bockman 8 years ago
parent
commit
159a7f4adf
  1. 3
      dotfiles/config/nvim/init.vim
  2. 2
      dotfiles/zshrc

3
dotfiles/config/nvim/init.vim

@ -182,6 +182,9 @@ let g:pymode_folding = 0
" set pydoc key
let g:pymode_doc_key = 'K'
" Disable auto python-mode autocomplete documentation window
set completeopt=menu
" Merlin for OCaml
let g:opamshare = substitute(system('opam config var share'),'\n$','','''')
execute "set rtp+=" . g:opamshare . "/merlin/vim"

2
dotfiles/zshrc

@ -38,7 +38,7 @@ alias gf='git fetch'
alias ga='git add .'
gblame() {
git blame $1
builtin git blame $1
}
parse_git_branch() {

Loading…
Cancel
Save