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
# Stop all running containers | |
docker stop $(docker ps -q) | |
# Remove all containers | |
docker rm -f $(docker ps -aq) | |
# Remove all images | |
docker rmi -f $(docker images -aq) | |
# Remove all volumes |
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' |
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
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 4 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
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
{ | |
"singleQuote": true, | |
"trailingComma": "all", | |
"tabWidth": 4, | |
"semi": true, | |
"printWidth": 100 | |
} |
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
# .tmux.conf | |
set -g mouse on | |
setw -g mode-keys vi | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
bind | split-window -h | |
bind - split-window -v |
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
# .bashrc | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
alias ll='ls -la' | |
alias gs='git status' | |
alias gc='git commit -m' | |
# Enable colors in terminal | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced |
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
{ | |
"deno.lint": true, | |
"deno.format": true, | |
"deno.enable": true, | |
"deno.unstable": true, | |
"terminal.integrated.env.linux": {}, | |
"console-ninja.featureSet": "Community", | |
"editor.fontFamily": "Consolas", | |
"editor.fontWeight": "300", | |
"editor.fontSize": 13, |
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
[ | |
{ | |
"key": "ctrl+n", | |
"command": "explorer.newFile" | |
}, | |
{ | |
"key": "ctrl+shift+n", | |
"command": "explorer.newFolder" | |
}, | |
{ |
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
[user] | |
email = [email protected] | |
name = broisnischal | |
[alias] | |
st = status -sb | |
co = checkout | |
ci = commit -m | |
lg = log --oneline --graph --decorate --all | |
ca = commit --amend --no-edit |
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
.editor-group-watermark > .letterpress { | |
background-image: url("https://raw.githubusercontent.com/broisnischal/flutter/main/test.png") !important; | |
opacity: 0.75; | |
} |