This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# magento gitignore from htdocs | |
# | |
# https://gist.github.com/Rud5G/4148997 | |
htdocs/app/etc/local.xml | |
htdocs/media/* | |
!htdocs/media/.htaccess | |
htdocs/var/* | |
!htdocs/var/.htaccess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" | |
" mkdir -p ~/.vim/{backup,syntax,tmp} | |
" | |
set autoindent " lines following an indented line will have the same indentation as the previous line. | |
set expandtab " resplace tabs with actuall spaces | |
set shiftwidth=4 " softtabs width 4. | |
set tabstop=4 " tabs are 4 spaces | |
" those 4 are needed to use :%retab |