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
# source: | |
# https://discussions.apple.com/message/32354266#message32354266 | |
sudo mdutil -Ea | |
sudo mdutil -ai off | |
sudo mdutil -ai on |
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
$foreground: #16161d; // Eigengrau | |
$background: #FFFFFF; | |
@mixin color-theme($fg, $bg, $link, $link-hover) { | |
color: $fg !important; | |
background-color: $bg !important; | |
a[href] { color: $link !important }; | |
a[href]:hover { color: $link-hover !important }; |
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
events { | |
worker_connections 1024; # increase if you have lots of clients | |
accept_mutex on; # "on" if nginx worker_processes > 1 | |
use epoll; # enable for Linux 2.6+ | |
} | |
http { | |
map $sent_http_content_type $cacheable_types { | |
"text/css" "60d"; |
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
function! GlobalSearch() | |
let text = escape(input("what do you want to search?: "), '\\/') | |
if text == "" | |
echo "" | return | |
endif | |
let extension = escape(input("Wich extension? (* for all): "), '\\/') | |
if extension == "" | |
echo "" | return | |
endif | |