Created
August 3, 2024 12:45
-
-
Save broisnischal/e4976d57c5b37f05d3e88aa5a37a48f6 to your computer and use it in GitHub Desktop.
Zshrx
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
# Amazon Q pre block. Keep at the top of this file. | |
[[ -f "${HOME}/Library/Application Support/amazon-q/shell/zshrc.pre.zsh" ]] && builtin source "${HOME}/Library/Application Support/amaz$ | |
# Q pre block. Keep at the top of this file. | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
alias dbb='dart pub run build_runner build --delete-conflicting-outputs && flutter clean && flutter pub get' | |
alias db='dart pub run build_runner build --delete-conflicting-outputs' | |
alias fc='flutter clean' | |
alias fg='flutter pub get' | |
alias fcg='flutter clean && flutter pub get' | |
# 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 | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
ZSH_THEME="apple" | |
# Set list of themes to pick from when loading at random | |
# Setting this variable when ZSH_THEME=random will cause zsh to load | |
# a theme from this variable instead of looking in $ZSH/themes/ | |
# If set to an empty array, this variable will have no effect. | |
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment