You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
552 B

4 years ago
  1. Start you a .vimrc
  2. ==================
  3. Your .vimrc might be tiny to start with:
  4. set nocompatible
  5. " Let me delete stuff while in insert mode:
  6. set backspace=indent,eol,start
  7. " Display commands as-typed + current position in file:
  8. set showcmd
  9. set ruler
  10. " Display a visual menu for tab-completion of files:
  11. set wildmenu
  12. " Display tab characters as 8 spaces, indent 2 spaces,
  13. " always use spaces instead of tabs:
  14. set tabstop=8
  15. set shiftwidth=2
  16. set softtabstop=2
  17. set expandtab
  18. set autoindent