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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Factura</title> | |
| <style type="text/css"> | |
| *{ | |
| box-sizing: border-box; | |
| -webkit-user-select: none; /* Chrome, Opera, Safari */ | |
| -moz-user-select: none; /* Firefox 2+ */ | |
| -ms-user-select: none; /* IE 10+ */ |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": [ | |
| { | |
| "command": { | |
| "action": "copy", | |
| "singleLine": false | |
| }, | |
| "id": "User.copy.644BA8F2", |
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
| PS1='\[\033]0;\u@\w\007\]' # set window title | |
| PS1="$PS1"'\[\033[31m\]' # change to red | |
| PS1="$PS1"'❯❯ ' | |
| PS1="$PS1"'\[\033[33m\]' # change to yellow | |
| PS1="$PS1"'\A ' | |
| PS1="$PS1"'\[\033[32m\]' # change to green | |
| PS1="$PS1"'\w' # current basename working directory | |
| if test -z "$WINELOADERNOEXEC" | |
| then | |
| GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)" |
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
| alias php="php.bat" | |
| alias herd="herd.bat" | |
| alias laravel="laravel.bat" | |
| alias composer="composer.bat" | |
| # Laravel aliases | |
| alias art="php artisan" | |
| alias artisan="php artisan" | |
| alias tinker="php artisan tinker" |
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
| # generated by Git for Windows | |
| test -f ~/.profile && . ~/.profile | |
| test -f ~/.bashrc && . ~/.bashrc |
OlderNewer