Skip to content

Instantly share code, notes, and snippets.

View CharFractal's full-sized avatar
🧨
Explosive

Ravikul Rao CharFractal

🧨
Explosive
View GitHub Profile
@CharFractal
CharFractal / alacritty.toml
Created September 14, 2024 14:55
Ultimate Alacritty config
import = ["~/.config/alacritty/blood_moon.toml"]
[shell]
program = "/bin/fish"
[window]
opacity = 0.4
[font]
normal = { family = "JetBrains Mono" , style = "Bold"}
@CharFractal
CharFractal / .vimrc
Last active August 3, 2024 09:49
minimalist vim config for c/c++ devs
syntax on
set number
set linebreak
set showbreak=+++
set textwidth=100
set showmatch
set hlsearch
set smartcase
set ignorecase
set incsearch