{"id":31658098,"url":"https://github.com/singhantariksh/nvim-dotfiles","last_synced_at":"2026-05-09T03:32:02.947Z","repository":{"id":315805542,"uuid":"1059532877","full_name":"singhantariksh/nvim-dotfiles","owner":"singhantariksh","description":"My personal nvim configuration made with lua and lazy","archived":false,"fork":false,"pushed_at":"2026-03-01T19:40:06.000Z","size":2186,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-01T21:54:57.020Z","etag":null,"topics":["dotfiles","fzf-lua","lazy","lua","neovim","nvim"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/singhantariksh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-18T15:13:51.000Z","updated_at":"2026-03-01T19:40:10.000Z","dependencies_parsed_at":"2025-09-20T21:29:45.946Z","dependency_job_id":"da6d7205-47e8-4305-8f38-b603e61e0962","html_url":"https://github.com/singhantariksh/nvim-dotfiles","commit_stats":null,"previous_names":["singhantariksh/nvim","singhantariksh/nvim-dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/singhantariksh/nvim-dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhantariksh%2Fnvim-dotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhantariksh%2Fnvim-dotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhantariksh%2Fnvim-dotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhantariksh%2Fnvim-dotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/singhantariksh","download_url":"https://codeload.github.com/singhantariksh/nvim-dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhantariksh%2Fnvim-dotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32805899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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","fzf-lua","lazy","lua","neovim","nvim"],"created_at":"2025-10-07T15:12:30.238Z","updated_at":"2026-05-09T03:32:02.943Z","avatar_url":"https://github.com/singhantariksh.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Neovim dotfiles\n\nMy Neovim configuration built with Lua, and the help of [typecraft's](https://youtube.com/playlist?list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn\u0026si=lKSghpiI4RgrFCxg) youtube playlist, [kickstart](https://github.com/nvim-lua/kickstart.nvim) nvim and me myself.\n\n---\n\n## In The [Beninging](https://www.youtube.com/watch?v=vacJSHN4ZmY)\n\n**Prerequisites**: I started with Neovim 0.11.x and with [Nerd Fonts](https://www.nerdfonts.com/) too (I personally use [Maple Font NF](https://github.com/subframe7536/maple-font) btw if you care)\n\n**Installation**:\n\n```bash\ngit clone https://github.com/singhantariksh/nvim-dotfiles.git ~/.config/nvim\ncd ~/.config/nvim\nnvim\n```\n\nopen neovim and everything should be installed automatically (hopefully)\n\n---\n\n## Configuration Structure\n\n```tree\n~/.config/nvim/\n├── assets\n│   ├── editor.png\n│   ├── greeter.png\n│   ├── navigation.png\n│   └── terminal.png\n├── init.lua\n├── lazy-lock.json\n├── lua\n│   ├── plugins\n│   │   ├── editing\n│   │   │   ├── auto-pairs.lua\n│   │   │   ├── comments.lua\n│   │   │   ├── flash.lua\n│   │   │   ├── inc-rename.lua\n│   │   │   ├── indent-o-matic.lua\n│   │   │   ├── lorem.lua\n│   │   │   ├── mini-modules.lua\n│   │   │   ├── smart-yank.lua\n│   │   │   ├── todo.lua\n│   │   │   ├── ultra-fold.lua\n│   │   │   ├── undo-tree.lua\n│   │   │   └── vim-matchup.lua\n│   │   ├── lsp-n-stuff\n│   │   │   ├── blink-cmp.lua\n│   │   │   ├── code-companion.lua\n│   │   │   ├── conform.lua\n│   │   │   ├── lsp-config.lua\n│   │   │   └── treesitter.lua\n│   │   ├── tools\n│   │   │   ├── auto-session.lua\n│   │   │   ├── color-picker.lua\n│   │   │   ├── csv-view.lua\n│   │   │   ├── fzf-lua.lua\n│   │   │   ├── git.lua\n│   │   │   ├── grug-far.lua\n│   │   │   ├── harpoon.lua\n│   │   │   ├── obsidian.lua\n│   │   │   ├── snacks.lua\n│   │   │   ├── suda.lua\n│   │   │   ├── which-key.lua\n│   │   │   └── yazi.lua\n│   │   └── ui\n│   │       ├── alpha-greeter.lua\n│   │       ├── bufferline.lua\n│   │       ├── lualine.lua\n│   │       ├── navic-winbar.lua\n│   │       ├── presence.lua\n│   │       ├── render-markdown.lua\n│   │       ├── showkeys.lua\n│   │       ├── smooth-cursor.lua\n│   │       └── themes.lua\n│   ├── plugins.lua\n│   ├── preferences.lua\n│   └── terminal.lua\n└── README.md\n```\n\n---\n\n## Some Screenshots\n\n### Startup Screen\n\n![alpha-nvim](./assets/greeter.png)\n\n### Editing Experience\n\n![Editing Screen](./assets/editor.png)\n\n### Navigation with fzf-lua (fuzzy search inside the current buffer)\n\n![fzf-lua](./assets/navigation.png)\n### Custom Toggle-able Floating Terminal\n\n![Floating Terminal](./assets/terminal.png)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinghantariksh%2Fnvim-dotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsinghantariksh%2Fnvim-dotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinghantariksh%2Fnvim-dotfiles/lists"}