Guest User

Untitled

a guest
Jul 15th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. call plug#begin('~/.vim/plugged')
  2.  
  3. " Plugins go here
  4. Plug 'sickill/vim-monokai'
  5. ekalinin/Dockerfile.vim
  6. call plug#end()
  7.  
  8. syntax enable
  9. color monokai
  10. set cursorline
  11. set expandtab
  12. set modelines=0
  13.  
  14. set number
  15. set encoding=utf-8
  16. set showcmd " display incomplete commands
  17. filetype plugin indent on " load file type plugins + indentation
  18.  
  19. "" Whitespace
  20. set nowrap " don't wrap lines
  21. set tabstop=2 shiftwidth=2 " a tab is two spaces (or set this to 4)
  22. set expandtab " use spaces, not tabs (optional)
  23. set backspace=indent,eol,start " backspace through everything in insert mode
  24. "" Searching
  25. set hlsearch " highlight matches
  26. set incsearch " incremental searching
  27. set ignorecase " searches are case insensitive...
  28. set smartcase " ... unless they contain at least one capital letter
Add Comment
Please, Sign In to add comment