programs.visidata.visidatarc

Home-Manager option

Configuration settings and Python function declarations to be written to ~/.visidatarc. All available options can be found here: https://www.visidata.org/docs/.

type: strings concatenated with “\n”
Default
""
Example
'' options.min_memory_mb=100 # stop processing without 100MB free bindkey('0', 'go-leftmost') # alias '0' to go to first column, like vim def median(values): L = sorted(values) return L[len(L)//2] vd.aggregator('median', median) ''
declared in: <home-manager/modules/programs/visidata.nix>source unavailable