Guest User

Untitled

a guest
Feb 10th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.45 KB | None | 0 0
  1. " Set a few things for Vundle
  2. set nocompatible " Be iMproved
  3. filetype off
  4. set rtp+=~/.vim/bundle/Vundle.vim
  5. call vundle#begin() " Specify a path in single quotes if you want.
  6. " Load plugins here
  7. Plugin 'gmarik/Vundle.vim' " Vundle now manages vundle.
  8. Plugin 'tpope/vim-sensible'
  9. Plugin 'tpope/vim-surround'
  10. Plugin 'altercation/vim-colors-solarized'
  11. " Plugin 'rdnetto/YCM-Generator'
  12. " Plugin 'valloric/YouCompleteMe'
  13. Plugin 'tmhedberg/SimpylFold'
  14. Plugin 'steffanc/cscopemaps.vim'
  15. call vundle#end()
  16.  
  17. " My settings
  18. " Vim-Sensible allows clearing highlights with C-L
  19. set hlsearch
  20. " Set tabs and autoindent to four spaces
  21. set tabstop=4
  22. "8
  23. set shiftwidth=4
  24. set expandtab
  25. " Turn of expandtab for make
  26. autocmd FileType make setlocal noexpandtab
  27. " Make spaces feel like tabs
  28. set softtabstop=4 " Backspace will now kill four spaces!
  29. " Start programming aware tabbing
  30. filetype plugin indent on
  31. " Fold based on syntax
  32. set foldmethod=syntax
  33. " Highlight column 80 and the line with the cursor on it.
  34. set cursorline
  35. set colorcolumn=80
  36.  
  37. " batbrat: Ctags settings
  38. set tags=./tags,./../tags,./../../tags,./../../../tags,tags
  39.  
  40. " All plugins must be loaded prior to this call.
  41. " For solarized plugin (color scheme)
  42. " https://github.com/altercation/vim-colors-solarized
  43. "let g:solarized_termcolors=16
  44. set background=light
  45. " let g:solarized_visibility = "high"
  46. colorscheme solarized
  47.  
  48. let g:ycm_server_keep_logfiles = 1
  49. let g:ycm_server_log_level = 'debug'
Add Comment
Please, Sign In to add comment