Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. set nocompatible
  2. syntax on
  3. set encoding=utf-8
  4. set showcmd
  5. filetype plugin indent on
  6.  
  7. set nowrap
  8. set tabstop=4 shiftwidth=4
  9. set expandtab
  10. set backspace=indent,eol,start
  11. set number
  12. set autoindent
  13. set smarttab
  14. set smartindent
  15.  
  16. inoremap ( ()<Esc>i
  17. inoremap (( (
  18. inoremap () ()
  19. inoremap { {}<Esc>i
  20. inoremap {{ {
  21. inoremap " ""<Esc>i
  22. inoremap {<CR> {<CR><BS>}<Esc>ko
  23.  
  24. set hlsearch
  25. set incsearch
  26. set ignorecase
  27. set smartcase
  28.  
  29. colorscheme moonscape
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement