Guest User

Untitled

a guest
May 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. call plug#begin('~/.vim/plugged')
  2.  
  3. Plug 'Valloric/YouCompleteMe'
  4. Plug 'jreybert/vimagit'
  5. Plug 'tpope/vim-fugitive'
  6. Plug 'w0rp/ale'
  7. Plug 'tpope/vim-sensible'
  8. Plug 'dracula/vim'
  9. Plug 'rkulla/pydiction'
  10. Plug 'Vimjas/vim-python-pep8-indent'
  11. Plug 'chrisbra/csv.vim'
  12. Plug 'plytophogy/vim-virtualenv'
  13. Plug 'zenbro/mirror.vim'
  14. Plug 'scrooloose/nerdtree'
  15. Plug 'alfredodeza/pytest.vim'
  16.  
  17. call plug#end()
  18.  
  19. filetype plugin indent on
  20. let g:pydiction_location = '/home/user/.vim/bundle/pydiction/complete-dict'
  21. let g:ale_python_flake8_use_global = 1
  22. let g:ale_python_flake8_executable = '/home/matthew/.pyenv/versions/neovim3/bin/python3'
  23. let g:python_host_prog = '/home/matthew/.pyenv/versions/neovim2/bin/python'
  24. let g:python3_host_prog = '/home/matthew/.pyenv/versions/neovim3/bin/python3'
  25. let g:ycm_server_python_interpreter = '/usr/bin/python3'
  26.  
  27. set number
  28. set exrc
  29. set secure
  30.  
  31. inoremap jjj <ESC><CR>
  32.  
  33. map <C-n> :NERDTreeToggle<CR>
  34. map <F7> :tabp<CR>
  35. map <F8> :tabn<CR>
Add Comment
Please, Sign In to add comment