Advertisement
Guest User

My _vimrc

a guest
May 24th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.80 KB | None | 0 0
  1. " Specify a directory for plugins
  2. " - For Neovim: ~/.local/share/nvim/plugged
  3. " - Avoid using standard Vim directory names like 'plugin'
  4. call plug#begin('~/.vim/plugged')
  5.  
  6. " On-demand loading
  7. Plug 'scrooloose/nerdtree', { 'on':  'NERDTreeToggle' }
  8. Plug 'vim-scripts/indentpython.vim'
  9. Plug 'vim-syntastic/syntastic'
  10. Plug 'nvie/vim-flake8'
  11. Plug 'jnurmine/Zenburn'  
  12. Plug 'kien/ctrlp.vim'
  13. " Plug 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
  14.  
  15. " Initialize plugin system
  16. call plug#end()
  17.  
  18. " ---------------------------------------------------------------
  19. " ----------------------------My_conf----------------------------
  20.  
  21. " >>>SET<<<
  22.  
  23. set number
  24. set encoding=utf-8
  25. set t_Co=256
  26.  
  27. colorscheme zenburn
  28. language en
  29.  
  30. let python_highlight_all=1
  31. syntax on
  32.  
  33. nnoremap <F5> :NERDTreeToggle<CR>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement