{"id":15247838,"url":"https://github.com/Nimaoth/Nev","last_synced_at":"2025-10-05T09:31:09.811Z","repository":{"id":49327274,"uuid":"507048797","full_name":"Nimaoth/Nev","owner":"Nimaoth","description":"Nev is a keyboard focused GUI and terminal text editor","archived":false,"fork":false,"pushed_at":"2025-10-03T16:11:50.000Z","size":65184,"stargazers_count":119,"open_issues_count":17,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-10-03T18:29:33.790Z","etag":null,"topics":["editor","nim","programming-language","projection-editor","projectional-editor","text-editor"],"latest_commit_sha":null,"homepage":"","language":"Nim","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nimaoth.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/supported_vim_keybindings.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-24T14:55:23.000Z","updated_at":"2025-09-27T23:18:43.000Z","dependencies_parsed_at":"2024-01-14T02:58:49.502Z","dependency_job_id":"ad859c30-c4f8-4889-b312-df655dc9e9f4","html_url":"https://github.com/Nimaoth/Nev","commit_stats":null,"previous_names":["nimaoth/nev"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/Nimaoth/Nev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nimaoth%2FNev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nimaoth%2FNev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nimaoth%2FNev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nimaoth%2FNev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nimaoth","download_url":"https://codeload.github.com/Nimaoth/Nev/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nimaoth%2FNev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278219817,"owners_count":25950358,"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","status":"online","status_checked_at":"2025-10-03T02:00:06.070Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["editor","nim","programming-language","projection-editor","projectional-editor","text-editor"],"created_at":"2024-09-29T15:00:20.844Z","updated_at":"2025-10-05T09:31:09.802Z","avatar_url":"https://github.com/Nimaoth.png","language":"Nim","readme":"# Nev\n\n![Build](https://github.com/Nimaoth/Nev/actions/workflows/main.yml/badge.svg?event=push)\n\nNev is a text editor focused on keyboard usage, customizability and speed which runs in the terminal and in a GUI.\nIt also aims to provide tools for writing code out of the box, like Git integration, syntax highlighting using [Treesitter](https://tree-sitter.github.io/tree-sitter/), language integration using [LSP](https://microsoft.github.io/language-server-protocol) and debugging using [DAP](https://microsoft.github.io/debug-adapter-protocol/).\n\nI'm also experimenting with a programming language system where instead of writing the source code as plain text,\nthe abstract syntax tree (AST) is edited directly (or rather through _projections_, which are still trees).\nThis feature is not included in release builds, and has to enabled by compiling with `-D:enableAst=true` (note that it doesn't compile with the latest version, I will continue work on this at a later stage, for now the focus is on making this a good text editor for \"normal\" programming languages).\n\nNev is still relatively new, so many things are still missing or need improvement. If you want to contribute check out [this](CONTRIBUTING.md).\n\nThere is a [Discord server](https://discord.gg/eJjBMcgP2V) where you can ask questions as well.\n\n## Features\n- Vim motions (incomplete)\n- [LSP](docs/lsp.md) (incomplete)\n- [Syntax highlighting](docs/treesitter.md) using treesitter (no support for nested languages yet)\n- Basic debugging using DAP\n- [Fuzzy search for various things](docs/finders.md)\n- [Sessions](docs/sessions.md)\n- [WASM plugins](docs/configuration.md)\n- Basic git integration (list/diff/add/stage/unstage/revert changed files)\n- [Builtin terminal emulator](docs/docs.md#Terminal) support multiple shells (e.g `bash`, `powershell`, `wsl`)\n- [Flexible layout system](docs/docs.md#Layout)\n- And many more smaller features...\n\n## Planned features\n- Collaborative editing (the foundation exists already, the editor is using CRDTs based on [Zeds](https://github.com/zed-industries/zed) implementation)\n- Create custom UI in plugins\n- Fine grained permissions for plugins\n- Builtin terminal\n- Generic tree/table view with fuzzy searching, collapsing nodes, support for large trees. This will be used for e.g. file tree, document symbol outlines, type hierarchies, etc.\n- Helix motions\n\n## Installation\nDownload latest [release](https://github.com/Nimaoth/Nev/releases) or [build from source](docs/building_from_source.md)\n\n## Inspirations\n- [Neovim](https://github.com/neovim/neovim)\n- [Helix](https://github.com/helix-editor/helix)\n- [Zed](https://github.com/zed-industries/zed)\n- [JetBrains MPS](https://github.com/JetBrains/MPS)\n\n## Important notes if you intend to use it\n- Currently only UTF-8 encoded files are supported\n- Carriage return (`0xD`) will be removed when loading, and not added back when saving.\n- Language servers and debug adapters have to installed manually at the moment, treesitter parsers require [emscripten](https://github.com/emscripten-core/emscripten)\n- Read the [docs](docs/getting_started.md)\n\n## Docs\n- [General docs, contains things that don't fit into other files](docs/docs.md)\n- [Build from source](docs/building_from_source.md)\n- [Getting started](docs/getting_started.md)\n- [Cheatsheet](docs/cheatsheet.md)\n- [Configuration](docs/configuration.md)\n- [Keybindings](docs/keybindings.md)\n- [Finders](docs/finders.md)\n- [Plugin API](https://nimaoth.github.io/AbsytreeDocs/scripting_nim/htmldocs/theindex.html).\n- [Virtual filesystem](docs/virtual_file_system.md)\n\n## Screenshots\n\nSome of these screenshots and GIFs are quite old and things might look different.\n\n### Nev running inside Windows Terminal -\u003e WSL -\u003e Zellij with transparent background\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/transparent_background.png)\n\n---\n\n### LSP integration\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/lsp.gif)\n\n---\n\n### Git integration\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/git.gif)\n\n---\n\n### Debugging support (breakpoints aren't rendered correctly in the GIF because of recording with asciinema and they use unicode symbols, see screenshot above)\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/debug.gif)\n\n---\n\n### Global and open file finders (and more)\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/finders.gif)\n\n---\n\n### Global search\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/search.gif)\n\n---\n\n### Themes\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/themes.gif)\n\n---\n\n### LSP completions\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/lsp_completions.png)\n\n---\n\n### Diagnostics, inlay hints and hover information\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/lsp_diagnostics_inlay_hints_hover.png)\n\n---\n\n### Fuzzy search for document symbols\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/lsp_document_symbols.png)\n\n---\n\n### View changed/added files in git, and open the diff for files directly, or stage/unstage/revert them\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/git_changed_files.png)\n\n---\n\n### View the git diff in the editor\n![alt](https://raw.githubusercontent.com/Nimaoth/NevScreenshots/main/git_diff.png)\n\n---\n","funding_links":[],"categories":["Language Features"],"sub_categories":["Editors"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNimaoth%2FNev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FNimaoth%2FNev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNimaoth%2FNev/lists"}