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
| source /opt/homebrew/share/antigen/antigen.zsh | |
| antigen use oh-my-zsh | |
| # Bundles from the default repo (robbyrussell's oh-my-zsh). | |
| antigen bundle asdf | |
| # brew install asdf | |
| antigen bundle brew | |
| antigen bundle 1995parham/buffalo.zsh@main | |
| antigen bundle bundler |
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
| add_newline = true | |
| format = "(\\[$git_branch$git_status$git_state$git_delta\\] )$directory[>](bright-green) " | |
| right_format = "\\[ $status$cmd_duration$time \\]" | |
| [directory] | |
| format = '[$path ]($style)' | |
| style = 'bright-yellow' | |
| truncation_length = 0 | |
| repo_root_style = 'bright-green' | |
| before_repo_root_style = 'bright-blue' |
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
| #!/usr/bin/env bash | |
| [[ -f "${TM_SUPPORT_PATH}/lib/bash_init.sh" ]] && . "${TM_SUPPORT_PATH}/lib/bash_init.sh" | |
| TM_PROJECT_DIRECTORY="$TM_PROJECT_DIRECTORY/" | |
| echo -n "${TM_FILEPATH#$TM_PROJECT_DIRECTORY}" | pbcopy | |
| echo 'Relative path copied to clipboard: '"${TM_FILEPATH#$TM_PROJECT_DIRECTORY}" |
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
| excludeInFolderSearch = "{$excludeInFolderSearch,$extraExcludes,log,tmp,bin,public/system,.keep,.git,.DS_Store,coverage,vendor/assets,node_modules,var,client/chrome-ext/dist,client/web_app/dist,*.map,*.svg,*.pem}" | |
| excludeInFileChooser = "{$exclude,$excludeInFolderSearch}" | |
| excludeFilesInBrowser = "{$excludeFiles,.DS_Store}" | |
| excludeFiles = "{$excludeFiles,.git,.DS_Store}" | |
| include = "{$include,.*}" | |
| softTabs = true | |
| tabSize = 2 |
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
| source ~/.zsh/antigen.zsh | |
| alias cd..='cd ..' | |
| alias cd...='cd ../..' | |
| # ruby | |
| __be() { | |
| if [ -f "bin/$1" ]; then | |
| "bin/$@" | |
| else |