This file contains hidden or 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
let c = 1 | |
while c <= 100 | |
if eval("c % 15") == 0 | |
echo "FizzBuzz" | |
elseif eval("c % 3") == 0 | |
echo "Fizz" | |
elseif eval("c % 5") == 0 | |
echo "Buzz" | |
else | |
echo c |
This file contains hidden or 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
" Must be the first line, apparently | |
set nocompatible | |
set encoding=utf-8 | |
" Look | |
set background=dark | |
colorscheme twilight | |
set guifont=Source\ Code\ Pro | |
set number | |
set guioptions-=T " no toolbar |
This file contains hidden or 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
location ~ /\.git { | |
deny all; | |
} | |
# or, all . directories/files in general (including .htaccess, etc) | |
location ~ /\. { | |
deny all; | |
} |
NewerOlder