{"id":13479600,"url":"https://github.com/hardhackerlabs/theme-vim","last_synced_at":"2026-01-30T22:11:13.956Z","repository":{"id":155090880,"uuid":"630372865","full_name":"hardhackerlabs/theme-vim","owner":"hardhackerlabs","description":"🧑🏾‍🚀 HardHacker Theme for Vim/Neovim 🌈","archived":false,"fork":false,"pushed_at":"2024-04-21T10:45:51.000Z","size":12077,"stargazers_count":26,"open_issues_count":4,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-10T11:45:26.432Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hardhackerlabs.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":"2023-04-20T08:40:36.000Z","updated_at":"2025-04-08T11:08:43.000Z","dependencies_parsed_at":"2024-04-21T11:38:40.329Z","dependency_job_id":"cb177e38-bf87-4931-a831-b78c5052c0fb","html_url":"https://github.com/hardhackerlabs/theme-vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hardhackerlabs/theme-vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardhackerlabs%2Ftheme-vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardhackerlabs%2Ftheme-vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardhackerlabs%2Ftheme-vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardhackerlabs%2Ftheme-vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hardhackerlabs","download_url":"https://codeload.github.com/hardhackerlabs/theme-vim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardhackerlabs%2Ftheme-vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28920744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T20:25:28.696Z","status":"ssl_error","status_checked_at":"2026-01-30T20:25:13.426Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-07-31T16:02:19.880Z","updated_at":"2026-01-30T22:11:13.939Z","avatar_url":"https://github.com/hardhackerlabs.png","language":"Vim Script","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"180\" src=\"https://github.com/hardhackerlabs/themes/raw/master/media/logo/logo.png\" alt=\"HardHacker\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n  HardHacker Theme for VIM\n\u003c/h1\u003e\n\nSupported Vim, MacVim and NeoVim.\n\nSince Vim only supports 256 colors, there will be some color differences with Gui Vim, especially in the background color. For best results, it is recommended to use MacVim, NeoVim or other Gui Vim.\n\n![](./media/preview.jpeg)\n\n## 256-COLORS Palette\n\n| Palette    | XtermNum | Hex     |\n| ---------- | -------- | ------- |\n| Background | 235      | #262626 |\n| Foreground | 255      | #eeeeee |\n| Selection  | 238      | #444444 |\n| Comment    | 243      | #767676 |\n| Red        | 205      | #ff5faf |\n| Green      | 157      | #afffaf |\n| Yellow     | 227      | #ffff5f |\n| Blue       | 153      | #afd7ff |\n| Purple     | 219      | #ffafff |\n| Cyan       | 123      | #87ffff |\n\n## Install\n\n### Using Git\n\n```bash\ngit clone https://github.com/hardhackerlabs/theme-vim.git\ncp theme-vim/colors/hardhacker.vim  ~/.vim/colors/\n```\n\n### Using Vundle\n\n```vim\nPlugin 'hardhackerlabs/theme-vim', { 'name': 'hardhacker' }\n```\n\n### Using Plug\n\n```vim\nPlug 'hardhackerlabs/theme-vim', { 'as': 'hardhacker' }\n```\n\n### Using Lazy.nvim (for neovim user)\n\nIf you're using neovim, you can use [lazy.nvim](https://github.com/folke/lazy.nvim) too\n\n```lua\n{\n  \"hardhackerlabs/theme-vim\",\n  name = \"hardhacker\",\n  lazy = false,\n  priority = 1000,\n  config = function()\n    vim.g.hardhacker_hide_tilde = 1\n    vim.g.hardhacker_keyword_italic = 1\n    -- custom highlights\n    vim.g.hardhacker_custom_highlights = {}\n    vim.cmd(\"colorscheme hardhacker\")\n  end,\n},\n```\n\n### Using Packer.nvim\n\n```lua\nuse {'hardhackerlabs/theme-vim',  as = 'hardhacker'}\n```\n\n## Setup\n\nAdd the following configuration to the `~/.vimrc` or `~/.config/nvim/init.vim` file, then restart Vim or Neovim.\n\n```vim\nsyntax      enable\nsyntax      on\nset         t_Co=256\ncolorscheme hardhacker\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardhackerlabs%2Ftheme-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhardhackerlabs%2Ftheme-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardhackerlabs%2Ftheme-vim/lists"}