plugins.distant.settings.client.bin

Binary to use locally with the client.

Defaults to "distant" on Unix platforms and "distant.exe" on Windows.

Type: null or string or raw lua code

Default: null

Plugin default:

lib.nixvim.mkRaw ''
  (function()
    local os_name = require('distant-core').utils.detect_os_arch()
    return os_name == 'windows' and 'distant.exe' or 'distant'
  end)()
''

Example: “${lib.getExe distant}”

Declared by:

plugins.distant.settings.client.log_file

Log file path.

Type: null or string or raw lua code

Default: null

Plugin default: null

Declared by:

plugins.distant.settings.client.log_level

Log level.

Type: null or one of “trace”, “debug”, “info”, “warn”, “error”, “off” or raw lua code

Default: null

Plugin default: null

Declared by: