magdalena

interactive shell navigation and history
Log | Files | Refs | README | LICENSE

config.json (1019B)


      1 {
      2 	"editor": "vim",
      3 	"max_depth": 5,
      4 	"ignored_patterns": [".git", ".jj", ".zig-cache", "node_modules", "target"],
      5 	"fzf_opts": [
      6 		"--highlight-line",
      7 		"--ansi",
      8 		"--layout=reverse",
      9 		"--border=rounded",
     10 		"--color=bg+:#2a1f2e,bg:-1,spinner:#c084b8,hl:#e08060",
     11 		"--color=fg:#c8b8bf,header:#c4607a,info:#7a6e7a,pointer:#c084b8",
     12 		"--color=marker:#e06fad,fg+:#f0dfe5,prompt:#7a9fd4,hl+:#f0a070",
     13 		"--color=border:#3d2a42"
     14 	],
     15 	"fav_dirs": ["/home/miro/src"],
     16 	"openers": [
     17 		{
     18 			"extensions": ["mp4", "mkv", "avi", "webm"],
     19 			"action": "media_player",
     20 			"command": "mpv"
     21 		},
     22 		{
     23 			"extensions": ["flac", "aiff", "aif", "mp3", "wav"],
     24 			"action": "audio_player",
     25 			"command": "mpv"
     26 		},
     27 		{
     28 			"extensions": ["jpg", "jpeg", "png", "webp", "svg"],
     29 			"action": "image_viewer",
     30 			"command": "nsxiv-rifle"
     31 		},
     32 		{
     33 			"extensions": ["pdf", "epub", "mobi"],
     34 			"action": "document_reader",
     35 			"command": "sioyek"
     36 		},
     37 		{
     38 			"extensions": ["html"],
     39 			"action": "web_browser",
     40 			"command": "firefox"
     41 		}
     42 	]
     43 }