gitextract_ggwc0en1/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ └── bug_report.md │ ├── PULL_REQUEST_TEMPLATE │ └── workflows/ │ └── CICD.yml ├── .gitignore ├── .release.toml ├── CODEOWNERS ├── Cargo.toml ├── LICENSE ├── OWNERS ├── README.md ├── build.rs ├── ci/ │ ├── before_deploy.bash │ ├── before_install.bash │ └── script.bash ├── doc/ │ ├── colors.md │ ├── lsd.md │ └── samples/ │ ├── colors-sample.yaml │ ├── config-sample.yaml │ └── icons-sample.yaml ├── lsd.spec ├── rustfmt.toml ├── src/ │ ├── app.rs │ ├── color.rs │ ├── config_file.rs │ ├── core.rs │ ├── display.rs │ ├── flags/ │ │ ├── blocks.rs │ │ ├── color.rs │ │ ├── date.rs │ │ ├── dereference.rs │ │ ├── display.rs │ │ ├── header.rs │ │ ├── hyperlink.rs │ │ ├── icons.rs │ │ ├── ignore_globs.rs │ │ ├── indicators.rs │ │ ├── layout.rs │ │ ├── literal.rs │ │ ├── permission.rs │ │ ├── recursion.rs │ │ ├── size.rs │ │ ├── sorting.rs │ │ ├── symlink_arrow.rs │ │ ├── symlinks.rs │ │ ├── total_size.rs │ │ └── truncate_owner.rs │ ├── flags.rs │ ├── git.rs │ ├── git_theme.rs │ ├── icon.rs │ ├── main.rs │ ├── meta/ │ │ ├── access_control.rs │ │ ├── date.rs │ │ ├── filetype.rs │ │ ├── git_file_status.rs │ │ ├── indicator.rs │ │ ├── inode.rs │ │ ├── links.rs │ │ ├── locale.rs │ │ ├── mod.rs │ │ ├── name.rs │ │ ├── owner.rs │ │ ├── permissions.rs │ │ ├── permissions_or_attributes.rs │ │ ├── size.rs │ │ ├── symlink.rs │ │ ├── windows_attributes.rs │ │ └── windows_utils.rs │ ├── sort.rs │ ├── theme/ │ │ ├── color.rs │ │ ├── git.rs │ │ └── icon.rs │ └── theme.rs └── tests/ └── integration.rs