{"id":21429595,"url":"https://github.com/dc-tec/nixvim","last_synced_at":"2025-07-14T11:30:42.237Z","repository":{"id":233054842,"uuid":"785908824","full_name":"dc-tec/nixvim","owner":"dc-tec","description":"My personal NixVim Configuration","archived":false,"fork":false,"pushed_at":"2024-10-23T20:55:04.000Z","size":941,"stargazers_count":29,"open_issues_count":3,"forks_count":15,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-24T08:45:45.893Z","etag":null,"topics":["neovim","nix","nix-flake","nixvim-config"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dc-tec.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-04-12T22:16:29.000Z","updated_at":"2024-10-23T20:55:07.000Z","dependencies_parsed_at":"2024-05-10T21:48:37.368Z","dependency_job_id":"ecf89a7e-16e2-4556-b613-39db8c1e52b0","html_url":"https://github.com/dc-tec/nixvim","commit_stats":null,"previous_names":["dc-tec/nixvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dc-tec%2Fnixvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dc-tec%2Fnixvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dc-tec%2Fnixvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dc-tec%2Fnixvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dc-tec","download_url":"https://codeload.github.com/dc-tec/nixvim/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225971250,"owners_count":17553461,"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","nix","nix-flake","nixvim-config"],"created_at":"2024-11-22T22:18:24.466Z","updated_at":"2024-11-22T22:18:24.997Z","avatar_url":"https://github.com/dc-tec.png","language":"Nix","readme":"# NixVim Configuration\n\nThis repository contains my personal configuration NixVim, a Neovim configuration managed with Nix.\n\n![Neovim](./.docs/images/neovim.png)\n\n## How to use\n\nYou can use this flake as an input:\n\n```nix\n{\n    inputs = {\n        nixvim.url = \"github:dc-tec/nixvim\"\n    };\n}\n```\n\nYou can then install the package either normally or through home-manager.\n\n#### Normal:\n\n```nix\nenvironment.systemPackages = [\n    inputs.nixvim.packages.x86_64-linux.default\n];\n```\n\n#### Home-Manager\n\n```nix\nhome-manager.users.\u003cuser\u003e.home.packages = [\n    inputs.nixvim.packages.x86_64-linux.default\n];\n```\n\n## Plugins\n\n### General Configuration\n\n- `settings.nix`: Contains general settings for Neovim.\n- `keymaps.nix`: Defines key mappings.\n- `auto_cmds.nix`: Sets up automatic commands.\n- `file_types.nix`: Configures file type specific settings.\n\n### Themes\n\n- `default.nix`: Sets the default theme.\n\n### Completion\n\n- `cmp.nix`: Configures the cmp completion framework.\n- `cmp-copilot.nix`: Adds GitHub Copilot support to cmp.\n- `lspkind.nix`: Adds icons to lsp completion items.\n- `autopairs.nix`: Adds the autopairs plugin.\n- `schemastore.nix`: Adds the schemastore plugin for JSON and YAML schemas.\n\n### Snippets\n\n- `luasnip.nix`: Configures the LuaSnip snippet engine.\n\n### Editor Plugins and Configurations\n\n- `neo-tree.nix`: Configures the NeoTree file explorer.\n- `treesitter.nix`: Configures the TreeSitter syntax highlighter.\n- `undotree.nix`: Configures the UndoTree undo history visualizer.\n- `illuminate.nix`: Configures the Illuminate plugin for highlighting other uses of the current word under the cursor.\n- `indent-blankline.nix`: Configures the Indent Blankline plugin for displaying indentation levels.\n- `todo-comments.nix`: Configures the Todo Comments plugin for highlighting TODO comments.\n- `copilot-chat.nix`: Configures the Copilot Chat plugin for interacting with GitHub Copilot.\n- `navic.nix`: Configures the Navic plugin, shows the current code context.\n\n### UI Plugins\n\n- `bufferline.nix`: Configures the Bufferline plugin for enhanced buffer/tab display.\n- `lualine.nix`: Configures the Lualine status line plugin.\n- `startup.nix`: Configures the startup screen.\n\n### LSP\n\n- `lsp.nix`: Configures the Neovim LSP client.\n- `conform.nix`: Configures the Conform plugin for automatic code formatting.\n- `fidget.nix`: Configures the Fidget plugin for displaying LSP diagnostics in the status line.\n\n### Git\n\n- `lazygit.nix`: Configures the LazyGit plugin for Git integration.\n- `gitsigns.nix`: Configures the GitSigns plugin for displaying Git diff information.\n\n### Utils\n\n- `telescope.nix`: Configures the Telescope plugin for fuzzy finding and picking.\n- `whichkey.nix`: Configures the WhichKey plugin for displaying key mappings.\n- `extra_plugins.nix`: Configures additional plugins.\n- `mini.nix`: Configures the Mini plugin.\n- `obsidian.nix`: Confiugres the Obsidian plugin, for note-taking purposes.\n- `markdown-preview.nix`: Configures the Markdown Preview plugin.\n- `toggleterm.nix`: Configures Terminal plugin.\n\nPlease refer to the individual `.nix` files for more detailed configuration information.\n\n## References\n\nThis configuration has taken inspiration from the following contributors.\n\n- [Elythh](https://github.com/elythh/nixvim)\n- [MikaelFangel](https://github.com/MikaelFangel/nixvim-config)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdc-tec%2Fnixvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdc-tec%2Fnixvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdc-tec%2Fnixvim/lists"}