Skip to content

Instantly share code, notes, and snippets.

View deltoss's full-sized avatar
🐢
The world of code sure is vast...

Michael deltoss

🐢
The world of code sure is vast...
View GitHub Profile
@deltoss
deltoss / CustomPreviewer.cmd
Last active March 31, 2024 13:00
Windows Custom Previewer for lf
@echo off
REM Powershell 5/6
REM powershell -NoProfile -File %~dp0\CustomPreviewer.ps1 %0 %1 %2 %3 %4 %5 %6 %7 %8
REM Powershell 7+
pwsh -NoProfile -File %~dp0\CustomPreviewer.ps1 %0 %1 %2 %3 %4 %5 %6 %7 %8
@deltoss
deltoss / SurfingKeysConfig.js
Last active December 8, 2025 02:19
SurfingkeysConfig
settings.blocklistPattern = /.*tinkercad.com.*/i;
settings.scrollStepSize = 140;
settings.modeAfterYank = "Normal";
settings.hintShiftNonActive = true;
api.map("<Alt-d>", "<Alt-s>");
api.unmap("<Alt-s>");
api.map("gt", "T");
@deltoss
deltoss / FavoriteCLICheatsheet.json
Last active October 27, 2025 03:46
Favorite CLI tools and commands
{
"clitools": [
{
"name": "Git",
"command": "git",
"tags": [
"git",
"vcs"
],
"description": "Distributed version control system",
@deltoss
deltoss / SSH on Windows.md
Last active August 28, 2025 05:36
How to set up SSH keys on a Windows machine.

SSH on Windows

🔑 Generating SSH Keys with OpenSSH

  1. Open a terminal in the directory where you want to save your key.

  2. Run this command to generate a new SSH key:

ssh-keygen -t ed25519 -C "Your Key Name"