Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. Plugin 'VundleVim/Vundle.vim'
  8. "Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
  9. Plugin 'tpope/vim-fugitive'
  10. Plugin 'vim-airline/vim-airline'
  11. Plugin 'vim-airline/vim-airline-themes'
  12. Plugin 'brendonrapp/smyck-vim'
  13. call vundle#end() " required
  14. filetype plugin indent on " required
  15. "
  16. " Brief help
  17. " :PluginList - lists configured plugins
  18. " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  19. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  20. " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  21. "
  22. " see :h vundle for more details or wiki for FAQ
  23. " Put your non-Plugin stuff after this line
  24.  
  25. syntax on "set syntax highlighting on
  26. set bg=dark "default to dark background
  27. set laststatus=2
  28.  
  29. color smyck
  30. "color base16-ocean
  31. "colorscheme solarized "default colorscheme
  32. set showmatch "show matching brackets
  33. set hlsearch "highlight when searching
  34. set autochdir "automcatically change to directory of open file
  35. set ignorecase "ignore case when searcing
  36. set number "line numbers
  37. set cindent
  38. set autoindent
  39. set smartindent
  40. set smarttab
  41. set noexpandtab "actual tabs not spaces!
  42. set tabstop=4 "tab width
  43. set shiftwidth=2
  44. set bs=indent,eol,start "make the backspace key actually work
  45. set cinkeys=0{,0},:,0#,!^F
  46. set nocompatible
  47.  
  48. let g:airline_powerline_fonts = 1
  49. let g:airline_theme='powerlineish'
Add Comment
Please, Sign In to add comment