Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. set rtp+=/usr/share/vim/vimfiles/plugin/powerline.vim
  2. set laststatus=2
  3. set t_Co=256
  4.  
  5. syntax on
  6. filetype plugin indent on
  7. autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
  8. set number
  9. set autoindent
  10. set tabstop=4
  11. set expandtab
  12. set shiftwidth=4
  13. set softtabstop=4
  14. set cursorline
  15. set foldenable
  16.  
  17. let python_highlight_all = 1
  18.  
  19. set statusline+=%#warningmsg#
  20. set statusline+=%{SyntasticStatuslineFlag()}
  21. set statusline+=%*
  22.  
  23. let g:syntastic_always_populate_loc_list = 1
  24. let g:syntastic_auto_loc_list = 1
  25. let g:syntastic_loc_list_height=5
  26. let g:syntastic_check_on_open = 1
  27. let g:syntastic_check_on_wq = 0
  28.  
  29. autocmd BufWritePre * %s/\s\+$//e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement