{"id":23338923,"url":"https://github.com/robertmenke/nvim","last_synced_at":"2025-04-07T13:45:05.545Z","repository":{"id":226248763,"uuid":"767615245","full_name":"RobertMenke/nvim","owner":"RobertMenke","description":"My neovim config","archived":false,"fork":false,"pushed_at":"2024-10-12T02:04:39.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T16:40:21.739Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/RobertMenke.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-03-05T16:02:10.000Z","updated_at":"2024-10-12T02:04:42.000Z","dependencies_parsed_at":"2024-06-21T21:00:23.029Z","dependency_job_id":"4554ec5b-0167-43ea-9bdf-63e475cd3850","html_url":"https://github.com/RobertMenke/nvim","commit_stats":null,"previous_names":["robertmenke/nvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertMenke%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertMenke%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertMenke%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertMenke%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobertMenke","download_url":"https://codeload.github.com/RobertMenke/nvim/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247666007,"owners_count":20975785,"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":[],"created_at":"2024-12-21T03:17:11.376Z","updated_at":"2025-04-07T13:45:05.506Z","avatar_url":"https://github.com/RobertMenke.png","language":"Lua","readme":"## About\n\nMy personal neovim config inspired by:\n- [Kickstart](https://github.com/nvim-lua/kickstart.nvim)\n- [LunarVim](https://github.com/LunarVim/LunarVim)\n- [LazyVim](https://github.com/LazyVim/LazyVim)\n\n### Install External Dependencies\n\n\u003e **NOTE** \n\u003e [Backup](#FAQ) your previous configuration (if any exists)\n\nExternal Requirements:\n- Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`)\n- [ripgrep](https://github.com/BurntSushi/ripgrep#installation)\n- Language Setup:\n  - If want to write Typescript, you need `npm`\n  - If want to write Golang, you will need `go`\n  - etc.\n\n\u003e **NOTE**\n\u003e See [Windows Installation](#Windows-Installation) to double check any additional Windows notes\n\nNeovim's configurations are located under the following paths, depending on your OS:\n\n| OS | PATH |\n| :- | :--- |\n| Linux, MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` |\n| Windows (cmd)| `%userprofile%\\AppData\\Local\\nvim\\` |\n| Windows (powershell)| `$env:USERPROFILE\\AppData\\Local\\nvim\\` |\n\n### Post Installation\n\nStart Neovim\n\n```sh\nnvim\n```\n\nThat's it! Lazy will install all the plugins you have. Use `:Lazy` to view\ncurrent plugin status.\n\n### Getting Started\n\nSee [Effective Neovim: Instant IDE](https://youtu.be/stqUbv-5u2s), covering the\nprevious version. Note: The install via init.lua is outdated, please follow the\ninstall instructions in this file instead. An updated video is coming soon.\n\n### Recommended Steps\n\n[Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this repo\n(so that you have your own copy that you can modify) and then installing you\ncan install to your machine using the methods above.\n\n\u003e **NOTE**  \n\u003e Your fork's url will be something like this: `https://github.com/\u003cyour_github_username\u003e/kickstart.nvim.git`\n\n### Windows Installation\n\nInstallation may require installing build tools, and updating the run command for `telescope-fzf-native`\n\nSee `telescope-fzf-native` documentation for [more details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)\n\nThis requires:\n\n- Install CMake, and the Microsoft C++ Build Tools on Windows\n\n```lua\n{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release \u0026\u0026 cmake --build build --config Release \u0026\u0026 cmake --install build --prefix build' }\n```\n\nAlternatively one can install gcc and make which don't require changing the config,\nthe easiest way is to use choco:\n\n1. install [chocolatey](https://chocolatey.org/install)\neither follow the instructions on the page or use winget,\nrun in cmd as **admin**:\n```\nwinget install --accept-source-agreements chocolatey.chocolatey\n```\n\n2. install all requirements using choco, exit previous cmd and\nopen a new one so that choco path is set, run in cmd as **admin**:\n```\nchoco install -y neovim git ripgrep wget fd unzip gzip mingw make\n```\n\nThen continue with the [Install Kickstart](#Install-Kickstart) step.\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertmenke%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertmenke%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertmenke%2Fnvim/lists"}