2016-01-05 14:18:58 +00:00
|
|
|
{
|
2020-05-07 14:08:59 +00:00
|
|
|
"$schema": "https://lnav.org/schemas/config-v1.schema.json",
|
2016-01-05 14:18:58 +00:00
|
|
|
"ui" : {
|
2022-07-15 05:32:38 +00:00
|
|
|
"clock-format": "%Y-%m-%dT%H:%M:%S %Z",
|
2020-05-07 14:08:59 +00:00
|
|
|
"dim-text": false,
|
2020-10-08 04:32:29 +00:00
|
|
|
"default-colors": true,
|
2019-05-03 20:50:19 +00:00
|
|
|
"keymap": "default",
|
|
|
|
"theme": "default"
|
2021-01-17 06:23:20 +00:00
|
|
|
},
|
|
|
|
"tuning": {
|
|
|
|
"archive-manager": {
|
2021-01-23 21:00:51 +00:00
|
|
|
"min-free-space": 33554432,
|
2021-01-17 06:23:20 +00:00
|
|
|
"cache-ttl": "2d"
|
2021-05-20 05:05:21 +00:00
|
|
|
},
|
|
|
|
"remote": {
|
|
|
|
"ssh": {
|
|
|
|
"command": "ssh",
|
|
|
|
"config": {
|
|
|
|
"BatchMode": "yes",
|
2021-06-02 05:57:32 +00:00
|
|
|
"ConnectTimeout": "10"
|
|
|
|
},
|
|
|
|
"start-command": "bash -c ./{0:}",
|
|
|
|
"transfer-command": "cat > {0:} && chmod ugo+rx ./{0:}"
|
2021-05-20 05:05:21 +00:00
|
|
|
}
|
2021-09-16 04:29:55 +00:00
|
|
|
},
|
|
|
|
"clipboard": {
|
|
|
|
"impls": {
|
|
|
|
"MacOS": {
|
|
|
|
"test": "command -v pbcopy",
|
|
|
|
"general": {
|
|
|
|
"write": "pbcopy",
|
|
|
|
"read": "pbpaste -Prefer txt"
|
|
|
|
},
|
|
|
|
"find": {
|
|
|
|
"write": "pbcopy -pboard find",
|
|
|
|
"read": "pbpaste -pboard find -Prefer txt"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Wayland": {
|
|
|
|
"test": "test -n \"$WAYLAND_DISPLAY\"",
|
|
|
|
"general": {
|
|
|
|
"write": "wl-copy --foreground --type text/plain",
|
|
|
|
"read": "wl-paste --no-newline"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"X11-xclip": {
|
|
|
|
"test": "test -n \"$DISPLAY\" && command -v xclip",
|
|
|
|
"general": {
|
|
|
|
"write": "xclip -i -selection clipboard",
|
|
|
|
"read": "xclip -o -selection clipboard"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"tmux": {
|
2022-07-12 20:16:13 +00:00
|
|
|
"test": "test -n \"$TMUX\" -a -z \"$SSH_CLIENT\"",
|
2021-09-16 04:29:55 +00:00
|
|
|
"general": {
|
|
|
|
"write": "tmux load-buffer -",
|
|
|
|
"read": "tmux save-buffer -"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"NeoVim": {
|
|
|
|
"test": "command -v win32yank.exe",
|
|
|
|
"general": {
|
|
|
|
"write": "win32yank.exe -i --crlf",
|
|
|
|
"read": "win32yank.exe -o --lf"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Windows": {
|
|
|
|
"test": "command -v clip.exe",
|
|
|
|
"general": {
|
|
|
|
"write": "clip.exe"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-17 06:23:20 +00:00
|
|
|
}
|
2016-01-05 14:18:58 +00:00
|
|
|
}
|
|
|
|
}
|