Guest User

Untitled

a guest
Jan 15th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.55 KB | None | 0 0
  1. syntax on
  2. set background=dark
  3. set ruler                     " show the line number on the bar
  4. set more                      " use more prompt
  5. set autoread                  " watch for file changes
  6. set number                    " line numbers
  7. set hidden
  8. set noautowrite               " don't automagically write on :next
  9. set lazyredraw                " don't redraw when don't have to
  10. set showmode
  11. set showcmd
  12. set nocompatible              " vim, not vi
  13. set autoindent smartindent    " auto/smart indent
  14. set smarttab                  " tab and backspace are smart
  15. set tabstop=2                 " 6 spaces
  16. set shiftwidth=2
  17. set scrolloff=5               " keep at least 5 lines above/below
  18. set sidescrolloff=5           " keep at least 5 lines left/right
  19. set history=200
  20. set backspace=indent,eol,start
  21. set linebreak
  22. set cmdheight=2               " command line two lines high
  23. set undolevels=1000           " 1000 undos
  24. set updatecount=100           " switch every 100 chars
  25. set complete=.,w,b,u,U,t,i,d  " do lots of scanning on tab completion
  26. set ttyfast                   " we have a fast terminal
  27. set noerrorbells              " No error bells please
  28. set shell=bash
  29. set fileformats=unix
  30. set ff=unix
  31. filetype on                   " Enable filetype detection
  32. filetype indent on            " Enable filetype-specific indenting
  33. filetype plugin on            " Enable filetype-specific plugins
  34. set wildmode=longest:full
  35. set wildmenu                  " menu has tab completion
  36. let maplocalleader=','        " all my macros start with ,
  37. set laststatus=2
Add Comment
Please, Sign In to add comment