Guest User

Untitled

a guest
Jan 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. set tabstop=8
  2. set expandtab
  3. set shiftwidth=4
  4. set softtabstop=4
  5. set textwidth=79
  6. syntax on
  7. filetype on
  8. filetype plugin indent on
  9. set autoindent
  10. set nu
  11. set ruler
  12. set tags=.git/tags
  13. execute pathogen#infect()
  14. autocmd FileType python set omnifunc=pythoncomplete#Complete
  15. autocmd FileType java set omnifunc=javacomplete#Complete
  16. let g:syntastic_auto_loc_list=1
  17. let g:syntastic_python_checkers=['flake8']
  18. let g:Tlist_Use_Right_Window=1
  19. nnoremap <silent> <F2> :cd %:p:h<cr>
  20. nnoremap <silent> <F3> :TagbarToggle<CR>
  21. nnoremap <silent> <F4> :set hlsearch<CR>
  22. nnoremap <silent> <F5> :set nohlsearch<CR>
  23. nnoremap <silent> <F6> :let _s=@/ <Bar> :%s/\s\+$//e <Bar> :let @/=_s <Bar> :nohl <Bar> :unlet _s <CR>
  24. set laststatus=2
  25. set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P
  26. set guioptions-=T
  27. "set background=dark
  28. "let g:solarized_termcolors=256
  29. "color solarized
  30. "color jellybeans
  31. "set t_Co=256
  32. "color zenburn
  33. "set background=dark
  34. "color gruvbox
  35. color seoul256
  36. "color seoul256-light
  37. "color darkblue
  38. hi statusline ctermfg=15 ctermbg=68
Add Comment
Please, Sign In to add comment