{"id":16345403,"url":"https://github.com/unclechu/neovimrc","last_synced_at":"2025-10-26T01:31:32.594Z","repository":{"id":66006981,"uuid":"64080794","full_name":"unclechu/neovimrc","owner":"unclechu","description":"My NeoVim configs","archived":false,"fork":false,"pushed_at":"2024-06-17T13:03:34.000Z","size":845,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-30T02:58:48.516Z","etag":null,"topics":["dotfiles","neovim","neovim-dotfiles","vim","vimrc"],"latest_commit_sha":null,"homepage":null,"language":"Vim Script","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/unclechu.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":"2016-07-24T18:56:24.000Z","updated_at":"2024-06-17T13:03:38.000Z","dependencies_parsed_at":"2023-03-10T23:28:03.096Z","dependency_job_id":"b6d4d4ca-d7c3-4258-be80-06e9ee878429","html_url":"https://github.com/unclechu/neovimrc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unclechu/neovimrc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Fneovimrc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Fneovimrc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Fneovimrc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Fneovimrc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unclechu","download_url":"https://codeload.github.com/unclechu/neovimrc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Fneovimrc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281047804,"owners_count":26435124,"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-25T02:00:06.499Z","response_time":81,"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":["dotfiles","neovim","neovim-dotfiles","vim","vimrc"],"created_at":"2024-10-11T00:31:35.323Z","updated_at":"2025-10-26T01:31:32.282Z","avatar_url":"https://github.com/unclechu.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NeoVimRC\n\nMy own Neovim config.\n\n## How to use\n\n### Nix\n\n#### Try it in a `nix-shell`\n\nNeovim default TUI:\n\n``` sh\nnix-shell --run nvim\n```\n\nNeovim QT GUI:\n\n``` sh\nnix-shell --arg with-neovim-qt true --run nvim-qt\n```\n\nNeovide GUI:\n\n``` sh\nnix-shell --arg with-neovide true --run neovide\n```\n\nTurn everything on:\n\n``` sh\nnix-shell \\\n  --arg with-neovim-qt           true \\\n  --arg with-neovide             true \\\n  --arg with-clean-vim-script    true \\\n  --arg with-git-grep-nvr-script true \\\n  --arg with-nvimd-script        true\n```\n\n#### As a NixOS system dependency\n\n``` nix\n{ pkgs, ... }:\nlet\n  wenzels-neovim-src = pkgs.fetchFromGitHub {\n    owner = \"unclechu\";\n    repo = \"neovimrc\";\n    rev = \"ffffffffffffffffffffffffffffffffffffffff\"; # Git commit hash\n    sha256 = \"0000000000000000000000000000000000000000000000000000\";\n  };\n\n  # See the arguments of these *.nix files.\n  # These are just simple examples which use defaults.\n  wenzels-neovim    = pkgs.callPackage \"${wenzels-neovim-src}/nix/apps/neovim.nix\"    {};\n  wenzels-neovim-qt = pkgs.callPackage \"${wenzels-neovim-src}/nix/apps/neovim-qt.nix\" {};\n  wenzels-neovide   = pkgs.callPackage \"${wenzels-neovim-src}/nix/apps/neovide.nix\"   {};\nin\n{\n  environment.systemPackages = [\n    wenzels-neovim\n    wenzels-neovim-qt\n    wenzels-neovide\n  ];\n}\n```\n\n##### Also the scripts\n\n``` nix\n{ pkgs, ... }:\nlet\n  wenzels-neovim-src = pkgs.fetchFromGitHub {\n    owner = \"unclechu\";\n    repo = \"neovimrc\";\n    rev = \"ffffffffffffffffffffffffffffffffffffffff\"; # Git commit hash\n    sha256 = \"0000000000000000000000000000000000000000000000000000\";\n  };\n\n  clean-vim    = pkgs.callPackage \"${wenzels-neovim-src}/nix/scripts/clean-vim.nix\"    {};\n  git-grep-nvr = pkgs.callPackage \"${wenzels-neovim-src}/nix/scripts/git-grep-nvr.nix\" {};\n  nvimd        = pkgs.callPackage \"${wenzels-neovim-src}/nix/scripts/nvimd.nix\"        {};\nin\n{ environment.systemPackages = [ clean-vim git-grep-nvr nvimd ]; }\n```\n\n### Other GNU/Linux distributions\n\n1. Clone this repo:\n\n   ``` sh\n   git clone --recursive https://github.com/unclechu/neovimrc.git ~/.config/nvim\n   ```\n\n2. Install dependencies:\n\n   ``` sh\n   nvim +PlugInstall!\n   ```\n\n## Author\n\nViacheslav Lotsmanov\n\n## License\n\n[MIT] — For the code of this repository.\nSome third-party dependencies may have different licenses.\n\n[MIT]: LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Fneovimrc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funclechu%2Fneovimrc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Fneovimrc/lists"}