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
{ | |
"bold_folder_labels": true, | |
"caret_style": "wide", | |
"color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"fallback_encoding": "UTF-8", | |
"find_selected_text": true, |
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
<VirtualHost *:80> | |
ServerAlias localhost *.l #wildcard catch all | |
VirtualDocumentRoot /var/www/%1/ | |
UseCanonicalName Off | |
<Directory "/var/www"> | |
Options FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all |
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
<?php | |
function skeleton_menu() { | |
$items['admin/skeleton/batch'] = array( | |
'title' => 'Skeleton Batch', | |
'page callback' => 'skeleton_batch_init', | |
'access arguments' => array('Administer content'), | |
'type' => MENU_NORMAL_ITEM, | |
); | |
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
# some more ls aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
# Directory navigation aliases | |
alias ..='cd ..' | |
alias ...='..;..' | |
alias ....='..;..;..' | |
alias .....='..;..;..;..' |
NewerOlder