Skip to content

Instantly share code, notes, and snippets.

@Tarawally
Tarawally / semantic-commit-messages.md
Created September 10, 2025 10:25 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@Tarawally
Tarawally / vimrc-setup.sh
Last active June 27, 2024 15:06
configure vim on debian based systems
#! /bin/sh
sudo apt update \
&& sudo apt install -y vim \
&& git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime \
&& sh ~/.vim_runtime/install_awesome_vimrc.sh