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.
18 lines
685 B
18 lines
685 B
" https://github.com/tpope/vim-pathogen
|
|
execute pathogen#infect()
|
|
|
|
" https://github.com/altercation/vim-colors-solarized
|
|
syntax enable
|
|
set background=dark
|
|
let g:solarized_termcolors=256
|
|
colorscheme solarized
|
|
|
|
" https://vcs.wpstudio.ru/wpstudio/autodeploy
|
|
set tabstop=4 " The width of a TAB is set to 4.
|
|
" Still it is a \t. It is just that
|
|
" Vim will interpret it to be having
|
|
" a width of 4.
|
|
set shiftwidth=4 " Indents will have a width of 4
|
|
set softtabstop=4 " Sets the number of columns for a TAB
|
|
set expandtab " Expand TABs to spaces
|
|
set paste " Prevent strange paddings on paste from clipboard
|