Skip to content

Instantly share code, notes, and snippets.

Indently [English]:
https://www.youtube.com/@Indently
Kevin Powell [English]:
https://www.youtube.com/@KevinPowell
Fireship [English]:
https://www.youtube.com/@Fireship
The Linux Experiment [English]:
@cj-praveen
cj-praveen / gtk.css
Last active January 28, 2025 05:44
~/.config/gtk-3.0/gtk.css (Xfce Panel Styling)
/* ~/.config/gtk-3.0/gtk.css */
@import 'colors.css';
.xfce4-panel {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 4px;
}
.tasklist button {
@cj-praveen
cj-praveen / settings.json
Last active July 26, 2024 11:24
My Configuration for Zed Code Editor
{
"features": {
"inline_completion_provider": "none"
},
"theme": "One Dark",
"telemetry": {
"diagnostics": false,
"metrics": false
},
"ui_font_size": 16,
@cj-praveen
cj-praveen / .vimrc
Last active July 11, 2024 05:29
My Configuration for VIM
set number
syntax on
set showmode
set nobackup
set noswapfile
set noundofile
set nowrap
set encoding=utf-8
set tabstop=4 softtabstop=4
set shiftwidth=4