{"id":23146900,"url":"https://github.com/nebunebu/nebvim","last_synced_at":"2026-04-15T16:02:10.149Z","repository":{"id":246993802,"uuid":"824786333","full_name":"nebunebu/nebvim","owner":"nebunebu","description":"personal neovim configuration","archived":false,"fork":false,"pushed_at":"2025-04-02T00:23:05.000Z","size":1621,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T01:26:47.268Z","etag":null,"topics":["neovim","neovim-configuration","nix","nix-flakes"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/nebunebu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2024-07-06T00:24:03.000Z","updated_at":"2025-04-02T00:23:09.000Z","dependencies_parsed_at":"2024-07-19T04:14:33.236Z","dependency_job_id":"6356a5d7-4c7f-4ca8-80ce-a202937219e6","html_url":"https://github.com/nebunebu/nebvim","commit_stats":null,"previous_names":["nebunebu/nebvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nebunebu%2Fnebvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nebunebu%2Fnebvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nebunebu%2Fnebvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nebunebu%2Fnebvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nebunebu","download_url":"https://codeload.github.com/nebunebu/nebvim/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247183524,"owners_count":20897608,"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":["neovim","neovim-configuration","nix","nix-flakes"],"created_at":"2024-12-17T16:39:19.625Z","updated_at":"2026-04-15T16:02:10.144Z","avatar_url":"https://github.com/nebunebu.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nebvim\n\nMy personal Neovim config using [tolerable](https://github.com/wires-org/tolerable-nvim-nix).\n\n\u003e [!CAUTION]\n\u003e This is a work in progress and is under constant development.\n\u003e This README does not necessarily reflect the current state of the\n\u003e configuration.\n\n## CONTENTS\n\n- [Usage](#usage)\n- [Gallery](#gallery)\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Contributing](#contributing)\n- [Special Thanks](#special-thanks)\n\n## Usage\n\nTo use without installing,\n\n```sh\nnix run github:nebunebu/nebvim\n```\n\n## Installation\n\nAdd nebvim to your flake inputs.\n\n```nix\n inputs = {\n    nebvim.url = \"github:nebunebu/nebvim\";\n };\n```\n\nTo add as a system package,\n\n```nix\n{ inputs, pkgs, ...}:\n\n{\n  enviornment.systemPackages =\n    [ inputs.nebvim.packages.\"${pkgs.stdenv.hostPlatform.system}\".default ];\n}\n```\n\nAnd to add as a home-manager package,\n\n```nix\n{ inputs, pkgs, ...}:\n\n{\n  home.packages = [ inputs.nebvim.packages.\"${pkgs.stdenv.hostPlatform.system}\".default ];\n}\n```\n\n## Configurations\n\nThis flake provides two Neovim configurations:\n\n- **`nebvim` (default)**: A full-featured Neovim IDE, complete with plugins for development, debugging, and more.\n- **`manvim`**: A minimal configuration designed to be used as a `MANPAGER`, providing a clean and efficient way to read man pages.\n\n### Plugin Management\n\nThe file `confs/${conf}/plugins.nix` serves as the primary plugin manager for each configuration. You can add plugins from three main sources:\n\n- **`pkgs.vimPlugins`**: The standard Nixpkgs repository for Vim plugins.\n- **`pkgs.vimExtraPlugins`**: An overlay providing additional community plugins.\n- **Flakes**: You can build plugins directly from flake inputs using the `lib.lz.build` helper.\n\nThe `plugins.nix` file contains examples of each method.\n\n### Runtime Dependencies\n\nAny runtime dependencies required by your plugins (e.g., external commands, libraries) should be added to `confs/nebvim/packages.nix`.\n\n### Nix Functions\n\nThis configuration exposes the following functions under `pkgs.lib`:\n\n- `mkNvimConf`: Takes a configuration name (e.g., \"nebvim\", \"manvim\") and builds a complete Neovim configuration using `tolerable`. It sources plugins and packages from the corresponding directory under `confs/`.\n\n#### `lib.lz`\n\nA set of helpers for making plugins compatible with the `lz.n` lazy-loader.\n\n- `lz.fromVimPlugins`: Takes a list of plugin names and returns a list of derivations from `pkgs.vimPlugins`.\n- `lz.fromExtraVimPlugins`: Takes a list of plugin names and returns a list of derivations from `pkgs.vimExtraPlugins`.\n- `lz.build`: A simple wrapper around `pkgs.vimUtils.buildVimPlugin`.\n- `lz.mkOptional`: Takes a list of plugin derivations and returns an attrset where each plugin is marked as optional.\n\n### Commands\n\n- `:LzCheck`: Prints a list of all configured plugins and their current load status (\"Loaded\" or \"Not Loaded\"). This is useful for debugging the lazy-loader.\n\n## Contributing\n\nIf you see any issues, or have any feedback or suggestions, feel free to submit\nan issue or make a pull request.\n\n## Special Thanks\n\n- [wires-org/tolerable-nvim-nix](https://github.com/wires-org/tolerable-nvim-nix)\n- [mrshmllow/nvim-candy](https://github.com/mrshmllow/nvim-candy)\n- All the plugin authors and contributors who make this configuration possible\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnebunebu%2Fnebvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnebunebu%2Fnebvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnebunebu%2Fnebvim/lists"}