{"id":18486840,"url":"https://github.com/jrodal98/nvim","last_synced_at":"2025-07-06T13:36:15.098Z","repository":{"id":45601799,"uuid":"412973021","full_name":"jrodal98/nvim","owner":"jrodal98","description":"My neovim configuration","archived":false,"fork":false,"pushed_at":"2024-10-05T05:17:52.000Z","size":176,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T22:18:56.871Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jrodal98.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":"2021-10-03T04:13:49.000Z","updated_at":"2024-10-05T05:17:56.000Z","dependencies_parsed_at":"2024-05-05T04:21:21.582Z","dependency_job_id":"3f1212bd-7f62-4421-ad53-93694d8a3e0e","html_url":"https://github.com/jrodal98/nvim","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrodal98%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrodal98%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrodal98%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrodal98%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jrodal98","download_url":"https://codeload.github.com/jrodal98/nvim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254036843,"owners_count":22003654,"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-11-06T12:49:52.626Z","updated_at":"2025-05-13T22:14:34.957Z","avatar_url":"https://github.com/jrodal98.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neovim [![Neovim Minimum Version](https://img.shields.io/badge/Neovim-0.8.0-blueviolet.svg?style=flat-square\u0026logo=Neovim\u0026color=90E59A\u0026logoColor=white)](https://github.com/neovim/neovim)\n\n![nvim-basic](https://user-images.githubusercontent.com/35352333/204195025-4e037788-d400-4e88-b73d-97d6b49225c8.png)\n\n## Install\n\nIf you already have a neovim config, make a backup:\n\n```\nmv ~/.config/nvim ~/.config/nvim.bak\nmv ~/.local/share/nvim/ ~/.local/share/nvim.bak\n```\n\nRun this command to clone the repository:\n\n```\ngit clone https://github.com/jrodal98/nvim ~/.config/nvim\n```\n\nNext, follow these steps to finish setting up the config:\n\n1. Run `nvim`, which will trigger the initial packersync (you may see errors - this is okay)\n2. Close nvim and then run `nvim` again\n3. Install null-ls related packages: `MasonInstall prettierd stylua black isort shfmt shellcheck proselint`\n4. Wait for all the treesitter and mason LSP configs to download\n5. Close nvim\n\nSetup is now complete!\n\n## Docker\n\n### Run instructions\n\nInstall:\n\n```\ndocker pull ghcr.io/jrodal98/nvim:latest\n```\n\nTo run the docker image and to mount the current directory into the spawned container, run:\n\n```\ndocker run -v $(pwd):/project -it --rm ghcr.io/jrodal98/nvim:latest\n```\n\nYou can put the following alias in your shell rc:\n\n```\nnvim_docker='docker run -v $(pwd):/project -it --rm ghcr.io/jrodal98/nvim:latest'\n```\n\n### Build instructions\n\nFirst, build a base image\n\n```\ndocker build . -t ghcr.io/jrodal98/nvim:\u003cversion\u003e\n```\n\nNext, run a container\n\n```\ndocker run -it --rm --name nvim_docker_base ghcr.io/jrodal98/nvim:\u003cversion\u003e\n```\n\nFinally, we must manually complete the build, due to issues with running packer headless.\n\n1. Run `nvim`, which will trigger the initial packersync (you may see errors - this is okay)\n2. Close nvim and then run `nvim` again\n3. Install null-ls related packages: `MasonInstall prettierd stylua black isort shfmt shellcheck proselint`\n4. Wait for all the treesitter and mason LSP configs to download\n5. Outside of the container, open another terminal and run this to save the image: `docker container commit --change='ENTRYPOINT [\"/usr/bin/nvim\"]' nvim_docker_base ghcr.io/jrodal98/nvim:\u003cversion\u003e`\n\nTo upload it to ghcr without a github action...\n\n1. `docker login ghcr.io`\n2. enter github username and access token\n3. `docker tag ghcr.io/jrodal98/nvim:\u003cversion\u003e ghcr.io/jrodal98/nvim:latest`\n4. `docker push ghcr.io/jrodal98/nvim:\u003cversion\u003e`\n5. `docker push ghcr.io/jrodal98/nvim:latest`\n\n## Showcase\n\n![nvim-basic](https://user-images.githubusercontent.com/35352333/204195025-4e037788-d400-4e88-b73d-97d6b49225c8.png)\n![nvim-inlayhints](https://user-images.githubusercontent.com/35352333/204195065-4c8d32b6-5188-4654-a36b-54220af6f0e3.png)\n![nvim-diagnostic](https://user-images.githubusercontent.com/35352333/204195098-380b2db8-aa14-4356-b72a-47a361ad3643.png)\n\n## Inspiration\n\n- [nvim-basic-ide](https://github.com/LunarVim/nvim-basic-ide)\n- [Neovim-from-scratch](https://github.com/LunarVim/Neovim-from-scratch)\n- [NvChad](https://github.com/NvChad/NvChad)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrodal98%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjrodal98%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrodal98%2Fnvim/lists"}