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
#!/bin/bash | |
echo "flutter clean ..." | |
flutter clean | |
echo "Deleting .flutter-plugins ..." | |
rm -rf .flutter-plugins | |
echo "Deleting .packages ..." | |
rm -rf .packages | |
echo "Deleting .symlinks ..." | |
rm -rf ios/.symlinks/ |
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
# Add the flutter tool to your path: | |
export PATH="$PATH:$HOME/flutter/bin" | |
# ??? Setting JAVA_HOME for android studio ??? | |
export JAVA_HOME="/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home" | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will |
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
#!/bin/zsh | |
# Name: zsh-syntax-highlighting-filetypes | |
# Author: Magnus Woldrich <[email protected]> | |
# Update: 2011-06-20 23:26:38 | |
# | |
# This is based on nicoulaj's zsh-syntax-highlighting project [0]. I've | |
# taken the initial version of his script and added highlighting for | |
# filetypes and a few other things. The filetype highlighting rules are | |
# taken from my LS_COLORS [1] project. | |
# |
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
alias-finder() { | |
local cmd="" exact="" longer="" wordStart="" wordEnd="" multiWordEnd="" | |
for i in $@; do | |
case $i in | |
-e|--exact) exact=true;; | |
-l|--longer) longer=true;; | |
*) | |
if [[ -z $cmd ]]; then | |
cmd=$i | |
else |
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
# Changing/making/removing directory | |
setopt auto_pushd | |
setopt pushd_ignore_dups | |
setopt pushdminus | |
alias -g ...='../..' | |
alias -g ....='../../..' | |
alias -g .....='../../../..' | |
alias -g ......='../../../../..' |
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
/** | |
* If you don't like the verbosity level of notifications you can remove the [, verbose: 'v'] at the end of line 35. | |
* | |
* And if you have more than 1 file in spec directory is better to create phpspec.yml in root project directory, | |
* it doesn't matter if phpspec.yml will be empty or properly configured, | |
* and comment line 34 and uncomment line 33. | |
* | |
* For this file to work properly you need to install: | |
* brew install node | |
* npm install --global gulp-cli |