Skip to content

Instantly share code, notes, and snippets.

View fullmetalbrackets's full-sized avatar

Ariel Diaz fullmetalbrackets

View GitHub Profile
@fullmetalbrackets
fullmetalbrackets / Vaporwave.toml
Last active November 30, 2021 08:00
Vaporwave theme for Macchina
# Vaporwave theme for Macchina (https://github.com/Macchina-CLI/macchina)
# Place this file in ~/.config/macchina/themes
hide_ascii = true
prefer_small_ascii = false
spacing = 2
padding = 0
separator = "->"
key_color = "LightMagenta"
separator_color = "LightCyan"
@fullmetalbrackets
fullmetalbrackets / reset.css
Created November 30, 2021 03:23
CSS Reset
html {
box-sizing: border-box;
height: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
}
* {
@fullmetalbrackets
fullmetalbrackets / prism-vaporwave.css
Last active November 9, 2022 01:51
Vaporwave PrismJS Theme
/*
Inspired (with some changes) by Kabukicho VSCode theme by Victoria Drake [https://github.com/victoriadrake/kabukicho-vscode]
*/
code[class*="language-"],
pre[class*="language-"] {
color: #FF39A8;
font-family: 'JetBrains Mono', Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
border-radius: 0.5em;
text-align: left;
@fullmetalbrackets
fullmetalbrackets / .aliases
Last active January 17, 2022 05:31
Linux Aliases
# Place the '.aliases' in ~/ home directory
## If using zsh add the following to '.zshrc' file:
### source $HOME/.aliases
alias up='sudo apt update && sudo apt full-upgrade -y'
alias si='sudo apt install -y'
alias sn='sudo nano'
alias rb='sudo reboot'
alias sd='sudo shutdown'
alias sr='sudo rm'
@fullmetalbrackets
fullmetalbrackets / .zshrc
Last active October 26, 2022 06:45
Zsh & Oh My Zsh Config (Linux)
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
@fullmetalbrackets
fullmetalbrackets / starship.toml
Last active February 4, 2024 18:02
Starship Prompt Config (Windows Terminal)
# ~/.config/starship.toml
[character]
success_symbol = "🦄(bold green)"
error_symbol = "💩(bold red) "
[cmd_duration]
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec)
format = " took [$duration]($style)"