Skip to content

Instantly share code, notes, and snippets.

View RicherMans's full-sized avatar

Heinrich Dinkel RicherMans

View GitHub Profile
@RicherMans
RicherMans / alacritty-tmux-vim_truecolor.md
Created May 30, 2023 14:21 — forked from andersevenrud/alacritty-tmux-vim_truecolor.md
True Color (24-bit) and italics with alacritty + tmux + vim (neovim)

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
@RicherMans
RicherMans / install.sh
Last active April 7, 2021 01:57 — forked from wsntxxn/install.sh
neovim and coc installing script
# 1. install neovim
echo "[step 1] installing neovim"
if command -v nvim > /dev/null; then
echo "nvim has been installed"
else
NVIM_HOME="$HOME/modules/neovim"
printf "Neovim will be installed into this location:\\n"
printf "%s\\n" "${NVIM_HOME}"