Skip to content

Instantly share code, notes, and snippets.

Avatar
🚀

Herlon Aguiar herlon214

🚀
View GitHub Profile
@herlon214
herlon214 / next.config.js
Created July 3, 2022 02:47
NextJS 12 Hash Class Names
View next.config.js
const path = require('path')
const loaderUtils = require('loader-utils')
const hashOnlyIdent = (context, _, exportName) => {
const result = loaderUtils
.getHashDigest(
Buffer.from(
`filePath:${path
.relative(context.rootContext, context.resourcePath)
.replace(/\\+/g, '/')}#className:${exportName}`
@herlon214
herlon214 / .SETUP.md
Last active December 7, 2022 08:55
Personal Setup
View .SETUP.md

Setup

I'm using this gist files as source of truth in order to make most of my development setup portable between my macbook and my ubuntu desktop.

@herlon214
herlon214 / 24-bit-color.sh
Created August 18, 2022 11:17 — forked from lifepillar/24-bit-color.sh
Test 24 bit colors in terminals
View 24-bit-color.sh
#!/bin/bash
#
# This file echoes a bunch of 24-bit color codes
# to the terminal to demonstrate its functionality.
# The foreground escape sequence is ^[38;2;<r>;<g>;<b>m
# The background escape sequence is ^[48;2;<r>;<g>;<b>m
# <r> <g> <b> range from 0 to 255 inclusive.
# The escape sequence ^[0m returns output to default
setBackgroundColor()
@herlon214
herlon214 / alacritty-tmux-vim_truecolor.md
Created August 18, 2022 11:14 — forked from andersevenrud/alacritty-tmux-vim_truecolor.md
True Color (24-bit) and italics with alacritty + tmux + vim (neovim)
View alacritty-tmux-vim_truecolor.md

True Color (24-bit) and italics with alacritty + tmux + vim (neovim)

This should make True Color (24-bit) and italics work in your tmux session and vim/neovim when using Alacritty (and should be compatible with any other terminal emulator, including Kitty).

Testing colors

Running this script should look the same in tmux as without.

curl -s https://gist.githubusercontent.com/lifepillar/09a44b8cf0f9397465614e622979107f/raw/24-bit-color.sh >24-bit-color.sh