1
0
Fork
You've already forked yaash__cheatsheet
0
navi cheatsheets
iamyaash 45bd3fcfc2 chore: kubectl shortcuts added
Signed-off-by: iamyaash <iamyaash@noreply.codeberg.org>
2026年07月14日 10:21:31 +02:00
isene__cheats cheat: imported cheatsheets from prx2090 & isene 2025年11月10日 18:25:50 +05:30
prx2090__cheatsheets-for-navi cheat: imported cheatsheets from prx2090 & isene 2025年11月10日 18:25:50 +05:30
adb.cheat initial commit with personalized cheat for navi 2025年08月30日 18:09:38 +05:30
ansible.cheat chore: ansible ad-hoc commands 2025年09月25日 15:59:01 +05:30
cloudflared.cheat cheat: cloudflared tunnel cheats added 2025年11月28日 17:42:57 +05:30
convert.cheat initial commit with personalized cheat for navi 2025年08月30日 18:09:38 +05:30
docker.cheat chore: docker typo fix 2025年11月28日 17:42:21 +05:30
ffmpeg.cheat chore: fixed GIF generation typo 2025年11月11日 18:53:19 +05:30
forgejo-runner.cheat cheat: added useradd + usermod + forgejo-runner 2026年07月04日 18:15:02 +05:30
getent.cheat cheat: getent commands added 2026年07月04日 18:47:08 +05:30
groupadd.cheat cheat: shortcuts commands added for groupadd + groupdel 2026年07月04日 18:42:48 +05:30
groupdel.cheat cheat: shortcuts commands added for groupadd + groupdel 2026年07月04日 18:42:48 +05:30
kubectl.cheat chore: kubectl shortcuts added 2026年07月14日 10:21:31 +02:00
LICENSE Initial commit 2025年08月30日 14:38:58 +02:00
misc.cheat chore: ffmpeg and hostname 2025年09月25日 15:17:03 +05:30
README.md chore: written about how to create cheat sheet 2025年09月25日 15:58:58 +05:30
restic.cheat initial commit with personalized cheat for navi 2025年08月30日 18:09:38 +05:30
scrcpy.cheat initial commit with personalized cheat for navi 2025年08月30日 18:09:38 +05:30
ssh.cheat cheat: ssh shortcuts added 2026年07月01日 17:06:17 +05:30
useradd.cheat cheat: added command for useradd 2026年07月04日 18:26:50 +05:30
userdel.cheat cheat: added userdel shortcuts 2026年07月04日 18:29:47 +05:30
usermod.cheat cheat: added useradd + usermod + forgejo-runner 2026年07月04日 18:15:02 +05:30

navi Cheats

I store my personalized cheat files for Navi here. Most of the cheats shared by others felt overkill or weren’t relevant to my needs. So I created my own cheat file with the commands I use frequently and occasionally.

Metadata

  • Cheat Files Location: /home/$USER/.local/share/navi/cheats/<dirName__cheats>
  • Permissions: 644
  • Ownership: $USER:$USER

How to Create a Cheat Sheet?

Head inside the cheat files locations

cd /home/$USER/.local/share/navi/cheats

The .cheat files are stored here, which can available in the navi commands list.

  • Create a file with the extension of .cheat
touch ansible.cheat
  • Configure the .cheat file to easily identify the command in the navi commands list.
nvim ansible.cheat
  • Add a title in the first line, which helps us identify which of the commands are part of ansible.cheat
% ansible
  • Add comment/description of the command and enter the command itself:
# Ping all host using (ping module) Ad-Hoc Command
ansible all -m ping
# Run shell command on all hosts
ansible all -m shell -a "<e.g: uptime>"