{"id":16645883,"url":"https://github.com/y3owk1n/k92-nvim","last_synced_at":"2026-06-04T17:31:03.966Z","repository":{"id":216740574,"uuid":"740740255","full_name":"y3owk1n/k92-nvim","owner":"y3owk1n","description":"Neovim configuration build using nixvim with stripped off LazyVim features that only matters to me.","archived":false,"fork":false,"pushed_at":"2024-01-14T16:01:11.000Z","size":49,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T20:09:34.840Z","etag":null,"topics":["nix","nix-flake","nixos","nixvim"],"latest_commit_sha":null,"homepage":"","language":"Nix","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/y3owk1n.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}},"created_at":"2024-01-09T00:58:39.000Z","updated_at":"2024-10-09T17:09:17.000Z","dependencies_parsed_at":"2024-01-13T16:11:39.158Z","dependency_job_id":null,"html_url":"https://github.com/y3owk1n/k92-nvim","commit_stats":null,"previous_names":["y3owk1n/k92-nvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y3owk1n%2Fk92-nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y3owk1n%2Fk92-nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y3owk1n%2Fk92-nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y3owk1n%2Fk92-nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/y3owk1n","download_url":"https://codeload.github.com/y3owk1n/k92-nvim/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243181575,"owners_count":20249507,"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":["nix","nix-flake","nixos","nixvim"],"created_at":"2024-10-12T08:25:43.987Z","updated_at":"2025-03-12T08:24:12.115Z","avatar_url":"https://github.com/y3owk1n.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# k92-nvim\n\nNeovim configuration build using [nixvim](https://github.com/nix-community/nixvim) with stripped off [LazyVim](https://www.lazyvim.org/) features that only matters to me.\n\n\u003e Probably not using this for full time, until lazy loading is implemented and the issue can be found here 👉🏼 [Lazy loading #421](https://github.com/nix-community/nixvim/issues/421). In my opinion, everything i need can be configured within nixvim, but the startup time is still something concerning me.\n\n![Screenshot 2024-01-13 at 11 32 28 PM](https://github.com/y3owk1n/k92-nvim/assets/62775956/6022ee02-ab6b-40b3-b842-71cb635d4406)\n\n## Plugins included\n\n- cmp\n- codeium (vim version)\n- catppuccin\n- comment-nvim\n- conform\n- fidget\n- gitsigns\n- harpoon\n- inc-rename\n- lint\n- lsp\n- lualine\n- luasnip\n- neogen\n- neotree\n- nvim-cmp\n- surround\n- telescope\n- tmux-navigator\n- treesitter-context\n- treesitter-textobjects\n- treesitter\n- trouble\n- ts-autotag\n- ts-context-commentstring\n- undotree\n- which-key\n- yanky\n\n### This will also automatically install the following lsp servers\n\n- biome (auto detect biome.json or use prettierd for formatting)\n- eslint\n- jsonls\n- lua-ls\n- marksman\n- nil_ls\n- prismals\n- tailwindcss\n- tsserver\n- yamlls\n\n### This will also automatically install some linters and formatters\n\n- markdownlint-cli\n- yamllint\n- prettierd\n- nixfmt\n- nixpkgs-fmt\n- luajitPackages.luacheck\n- stylua\n- codespell\n- beautysh\n- shellcheck\n\n## How to Run\n\nYou can run this directly from the command line with:\n\n```shell\nnix run github:y3owk1n/k92-nvim\n```\n\nYou can also plug this into a flake to include it into a system configuration.\n\n```nix\n{\n  inputs = {\n    k92.url = \"github:y3owk1n/k92-nvim\";\n  };\n}\n```\n\nThis input can then be used as an overlay to replace the default neovim.\n\n```nix\n{ k92-nvim, ... }:\n{\n    overlays = (final: prev: {\n      neovim = k92-nvim.packages.${prev.system}.default;\n    });\n}\n```\n\n### The way that I am using this package\n\n```nix\n# flake.nix\n\n{\n  ...\n  inputs = {\n    ...other inputs (e.g. nixpkgs, home-manager, darwin, ...)\n\n    k92-nvim.url = \"github:y3owk1n/k92-nvim\"; \u003c- import this flake\n  };\n\n  outputs = inputs@{ nixpkgs, home-manager, darwin, k92-nvim, ... }:\n  ...rest of outputs configuration\n}\n```\n\nI'm using this with darwin configuration.\n\n```nix\n# modules/darwin.nix\n\n{ pkgs, username, system, inputs, ... }: {\n  ...imports\n\n  environment.systemPackages = [ inputs.k92-nvim.packages.${system}.default ]; \u003c- add it to system packages\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy3owk1n%2Fk92-nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fy3owk1n%2Fk92-nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy3owk1n%2Fk92-nvim/lists"}