43 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [manager]
 | |
| 
 | |
| prepend_keymap = [
 | |
|     # # undo trash
 | |
|     { on = "u",                 run = "plugin restore",           desc = "Restore last deleted files/folders" },
 | |
|     # # compress
 | |
|     { on = "C",                 run = "plugin ouch tar.gz",       desc = "Compress with ouch" },
 | |
|     # Goto
 | |
|     { on = [ "g", "h" ],        run = "cd ~",                     desc = "Go to ~" },
 | |
|     { on = [ "g", "a" ],        run = "cd ~/.cache",              desc = "Go to ~/.cache" },
 | |
|     { on = [ "g", "l", "b" ],   run = "cd ~/.local/bin",          desc = "Go to ~/.local/bin" },
 | |
|     { on = [ "g", "l", "s" ],   run = "cd ~/.local/share",        desc = "Go to ~/.local/share" },
 | |
|     { on = [ "g", "c", "c" ],   run = "cd ~/.config",             desc = "Go to ~/.config" },
 | |
|     { on = [ "g", "c", "h" ],   run = "cd ~/projects/dotfiles/config/hypr",                         desc = "Go to Hyprland config" },
 | |
|     { on = [ "g", "c", "f" ],   run = "cd ~/projects/dotfiles/config/fish",                         desc = "Go to Fish config" },
 | |
|     { on = [ "g", "c", "y" ],   run = "cd ~/projects/dotfiles/config/yazi",                         desc = "Go to Yazi config" },
 | |
|     { on = [ "g", "c", "a" ],   run = "cd ~/projects/dotfiles/config/astal",                        desc = "Go to astal config" },
 | |
|     { on = [ "g", "c", "l" ],   run = "cd ~/projects/dotfiles/config/lint",                         desc = "Go to linter configs" },
 | |
|     { on = [ "g", "c", "k" ],   run = "cd ~/projects/dotfiles/config/kitty",                        desc = "Go to kitty config" },
 | |
|     { on = [ "g", "c", "r" ],   run = "cd ~/projects/dotfiles/config/rofi",                         desc = "Go to rofi config" },
 | |
|     { on = [ "g", "c", "s" ],   run = "cd ~/projects/dotfiles/scripts",                             desc = "Go to script" },
 | |
|     { on = [ "g", "c", "d" ],   run = "cd ~/projects/dotfiles",                                     desc = "Go to Dotfiles folder" },
 | |
|     { on = [ "g", "c", "n" ],   run = "cd ~/projects/nvim",                                         desc = "Go to NeoVim config" },
 | |
|     { on = [ "g", "n" ],        run = "cd ~/NextCloud/Documents/",                                  desc = "Go to NextCloud Documents" },
 | |
|     { on = [ "g", "w" ],        run = "cd ~/NextCloud/Wallpapers",                                  desc = "Go to Wallpapers" },
 | |
|     { on = [ "g", "e", "n" ],   run = "cd ~/NextCloud/Documents/ETH/Semester3/",                    desc = "Go to ETH Nextcloud" },
 | |
|     { on = [ "g", "e", "p" ],   run = "cd ~/projects/eth/semester3/",                               desc = "Go to ETH git folder" },
 | |
|     { on = [ "g", "e", "g" ],   run = "cd ~/projects/eth/gitlab/spca2025-jahutz-hand-in/",          desc = "Go to ETH Gitlab folder" },
 | |
|     { on = [ "g", "e", "s" ],   run = "cd ~/projects/eth/eth-summaries/semester3/",                 desc = "Go to ETH Summaries folder" },
 | |
|     { on = [ "g", "s", "h" ],   run = "cd ~/.steam/steam/steamapps/common",                         desc = "Go to ~/.steam/steam/steamapps/common" },
 | |
|     { on = [ "g", "s", "g" ],   run = "cd /mnt/games/SteamLibrary",                                 desc = "Go to SteamLibrary on NTFS partition" },
 | |
|     { on = [ "g", "s", "s" ],   run = "cd /mnt/secondary/SteamLibrary",                             desc = "Go to SteamLibrary on main games drive" },
 | |
|     { on = [ "g", "o" ],        run = "cd /mnt/janis/Documents",  desc = "Go to Documents" },
 | |
|     { on = [ "g", "d" ],        run = "cd ~/Downloads",           desc = "Go to ~/Downloads" },
 | |
|     { on = [ "g", "p" ],        run = "cd ~/projects",            desc = "Go to projects" },
 | |
|     { on = [ "g", "t", "m" ],   run = "cd /tmp",                  desc = "Go to /tmp" },
 | |
|     { on = [ "g", "t", "t" ],   run = "cd ~/.local/share/Trash/", desc = "Go to TRASH" },
 | |
|     { on = [ "g", "/" ],        run = "cd /",                     desc = "Go to /" },
 | |
|     { on = [ "g", "m" ],        run = "cd /run/media/$USER",      desc = "Go to /run/media" },
 | |
|     { on = [ "g", "<Space>" ],  run = "cd --interactive",         desc = "Go to interactively" },
 | |
|     { on = [ "g", "-" ],        run  = "plugin vcs-files",        desc = "Show Git file changes" },
 | |
| ]
 |