Skip to content

Instantly share code, notes, and snippets.

@nicosql
nicosql / keymap.json
Created December 23, 2025 19:27 — forked from kofta999/keymap.json
Zed config files
[
{
"context": "Editor && (vim_mode == normal || vim_mode == visual) && !VimWaiting && !menu",
"bindings": {
// put key-bindings here if you want them to work in normal & visual mode
// Git
"space g h d": "editor::ToggleSelectedDiffHunks",
"space g h r": "git::Restore",
// Toggle inlay hints
@nicosql
nicosql / AnacondaSpark.py
Created December 20, 2023 07:44 — forked from ZeccaLehn/AnacondaSpark.py
Install Anaconda and Spark
######################## Linux #############################
### Auto Install Anaconda in Linux
mkdir Downloads
cd Downloads
wget "https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh" -O "Anaconda3-5.0.1-Linux-x86_64.sh"
chmod +x Anaconda3-5.0.1-Linux-x86_64.sh
sudo sh "Anaconda3-5.0.1-Linux-x86_64.sh" -b
cd $HOME
rm -r Downloads