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.

17 lines
654 B

  1. " https://github.com/tpope/vim-pathogen
  2. execute pathogen#infect()
  3. " https://github.com/altercation/vim-colors-solarized
  4. syntax enable
  5. set background=dark
  6. colorscheme solarized
  7. " https://vcs.wpstudio.ru/wpstudio/autodeploy
  8. set tabstop=4 " The width of a TAB is set to 4.
  9. " Still it is a \t. It is just that
  10. " Vim will interpret it to be having
  11. " a width of 4.
  12. set shiftwidth=4 " Indents will have a width of 4
  13. set softtabstop=4 " Sets the number of columns for a TAB
  14. set expandtab " Expand TABs to spaces
  15. set paste " Prevent strange paddings on paste from clipboard