{"id":13393101,"url":"https://github.com/gokcehan/lf","last_synced_at":"2026-02-04T07:14:53.327Z","repository":{"id":37641625,"uuid":"65616765","full_name":"gokcehan/lf","owner":"gokcehan","description":"Terminal file manager","archived":false,"fork":false,"pushed_at":"2025-05-06T02:11:32.000Z","size":3657,"stargazers_count":8170,"open_issues_count":128,"forks_count":331,"subscribers_count":65,"default_branch":"master","last_synced_at":"2025-05-06T20:22:19.681Z","etag":null,"topics":["file-manager","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gokcehan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-08-13T12:45:44.000Z","updated_at":"2025-05-06T20:05:09.000Z","dependencies_parsed_at":"2023-02-18T04:15:38.072Z","dependency_job_id":"43ec2b0a-7627-4508-bdbc-dcd8a8b39ee4","html_url":"https://github.com/gokcehan/lf","commit_stats":{"total_commits":1135,"total_committers":104,"mean_commits":"10.913461538461538","dds":0.3533039647577092,"last_synced_commit":"8bfa3a6d347cad3940d224d14181f58bbf39811e"},"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokcehan%2Flf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokcehan%2Flf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokcehan%2Flf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokcehan%2Flf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gokcehan","download_url":"https://codeload.github.com/gokcehan/lf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254027295,"owners_count":22002032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["file-manager","terminal"],"created_at":"2024-07-30T17:00:43.083Z","updated_at":"2026-02-04T07:14:53.322Z","avatar_url":"https://github.com/gokcehan.png","language":"Go","funding_links":[],"categories":["Go","What in this Repo","Files and Directories","Tool","Command-Line Productivity","Table of Contents","File Management","Applications","terminal","Tools and Plugins","Packages","File Managers","\u003ca name=\"file-manager\"\u003e\u003c/a\u003eFile manager","Linux","Terminal","tools","Ranger Alternatives","\u003ca name=\"file_managers\"\u003e\u003c/a\u003efile_managers"],"sub_categories":["File Managers","Terminal File Manager","File Manager","Windows","CLI Tools","命令行","Vi/ViM"],"readme":"# LF\n\n[Doc](doc.md)\n| [Wiki](https://github.com/gokcehan/lf/wiki)\n| [#lf:matrix.org](https://matrix.to/#/#lf:matrix.org) (with IRC bridge)\n\n[![Go Build](https://github.com/gokcehan/lf/actions/workflows/go.yml/badge.svg)](https://github.com/gokcehan/lf/actions/workflows/go.yml)\n[![Go Report Card](https://goreportcard.com/badge/github.com/gokcehan/lf)](https://goreportcard.com/report/github.com/gokcehan/lf)\n\n`lf` (as in \"list files\") is a terminal file manager written in Go with a heavy inspiration from [`ranger`](https://github.com/ranger/ranger) file manager.\nSee [faq](https://github.com/gokcehan/lf/wiki/FAQ) for more information and [tutorial](https://github.com/gokcehan/lf/wiki/Tutorial) for a gentle introduction with screencasts.\n\n![icons-and-border](https://github.com/user-attachments/assets/d5623462-05ab-4921-aeb3-d377d4732f9e)\n![image-preview](https://github.com/user-attachments/assets/9ff42a21-19dd-42fa-8407-5d055aa9d561)\n![new-features](https://github.com/user-attachments/assets/2a9a32aa-a764-438f-a810-e687e979dcee)\n\n## Features\n\n- Cross-platform (Linux, macOS, BSDs, Windows)\n- Single binary without any runtime dependencies\n- Fast startup and low memory footprint due to native code and static binaries\n- Asynchronous IO operations to avoid UI locking\n- Server/client architecture and remote commands to manage multiple instances\n- Extendable and configurable with shell commands\n- Customizable keybindings (vi and readline defaults)\n- A reasonable set of other features (see the [documentation](doc.md))\n\n## Non-Features\n\n- Tabs or windows (better handled by window manager or terminal multiplexer)\n- Builtin pager/editor (better handled by your pager/editor of choice)\n- Builtin commands for file operations (better handled by the underlying shell tools including but not limited to `mkdir`, `touch`, `chmod`, `chown`, `chgrp`, and `ln`)\n\n## Installation\n\nSee [packages](https://github.com/gokcehan/lf/wiki/Packages) for community maintained packages.\n\nSee [releases](https://github.com/gokcehan/lf/releases) for pre-built binaries.\n\nBuilding from the source requires [Go](https://go.dev/).\n\nOn Unix:\n\n```bash\nenv CGO_ENABLED=0 go install -ldflags=\"-s -w\" github.com/gokcehan/lf@latest\n```\n\nOn Windows `cmd`:\n\n```cmd\nset CGO_ENABLED=0\ngo install -ldflags=\"-s -w\" github.com/gokcehan/lf@latest\n```\n\nOn Windows `powershell`:\n\n```powershell\n$env:CGO_ENABLED = '0'\ngo install -ldflags=\"-s -w\" github.com/gokcehan/lf@latest\n```\n\n## Usage\n\nAfter the installation `lf` command should start the application in the current directory.\n\nRun `lf -help` to see command line options.\n\nRun `lf -doc` to see the [documentation](doc.md).\n\nSee [etc](etc) directory to integrate `lf` to your shell and/or editor.\nExample configuration files along with example colors and icons files can also be found in this directory.\n\nSee [integrations](https://github.com/gokcehan/lf/wiki/Integrations) to integrate `lf` to other tools.\n\nSee [tips](https://github.com/gokcehan/lf/wiki/Tips) for more examples.\n\n## Contributing\n\nSee [contributing](CONTRIBUTING.md) for guidelines.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgokcehan%2Flf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgokcehan%2Flf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgokcehan%2Flf/lists"}