Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. set nocompatible " no compatiple with old vi editor
  2.  
  3. " syntax highlight on
  4. syntax on
  5. filetype plugin indent on
  6.  
  7.  
  8. "Save file after VIM window focus lost
  9. :au FocusLost * :wa
  10. map <C-s> :wa<CR>
  11.  
  12. " Do not alert when switching buffers without saving
  13. set hidden
  14.  
  15. "font
  16. colorscheme desert
  17. set guifont=monospace\ 10
  18.  
  19. "Indentation on
  20. set autoindent
  21.  
  22. " fold mode
  23. set foldmethod=manual
  24.  
  25. " smart indent on
  26. set smartindent
  27.  
  28. " replace tabs with 2 spaces
  29. set smarttab
  30. set softtabstop=2
  31. set shiftwidth=2
  32. set tabstop=2
  33. set expandtab
  34.  
  35. " do not show GUI panel
  36. set guioptions-=T
  37.  
  38. " show line numbers
  39. set number
  40.  
  41. set incsearch "incremental search
  42. set ignorecase " while searching
  43. set vb " turns off visual bell
  44.  
  45. " allow to use backspace instead of "x"
  46. set backspace=indent,eol,start whichwrap+=<,>,[,]
  47.  
  48.  
  49. " C-c and C-v - Copy/Paste
  50. vmap <C-C> "+yi
  51. imap <C-V> <esc>"+gPi
Add Comment
Please, Sign In to add comment