Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.40 KB | None | 0 0
  1. syntax on
  2. set tabstop=2
  3. set shiftwidth=2
  4. set expandtab
  5. set autoindent
  6. set smartindent
  7. set whichwrap+=<,>,[,]
  8. set number
  9. set mouse=a
  10. set hlsearch
  11. set clipboard=unnamedplus
  12.  
  13. inoremap {      {}<Left>
  14. inoremap {<CR>  {<CR>}<Esc>O
  15. inoremap {}     {}
  16.  
  17. inoremap (      ()<Left>
  18. inoremap ()     ()
  19.  
  20. inoremap [      []<Left>
  21. inoremap []     []
  22.  
  23. inoremap "      ""<Left>
  24. inoremap ""     ""
  25.  
  26. inoremap '      ''<Left>
  27. inoremap ''     ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement