{"id":13605471,"url":"https://github.com/ntk148v/vim-horizon","last_synced_at":"2025-04-15T10:49:04.773Z","repository":{"id":49819720,"uuid":"172866442","full_name":"ntk148v/vim-horizon","owner":"ntk148v","description":"Adaptation of VS Code horizon colorscheme for Vim","archived":false,"fork":false,"pushed_at":"2023-03-17T07:24:22.000Z","size":1153,"stargazers_count":141,"open_issues_count":4,"forks_count":13,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T19:12:53.236Z","etag":null,"topics":["hacktoberfest","neovim","vim","vim-colorscheme","vim-colorscheme-dark"],"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/ntk148v.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}},"created_at":"2019-02-27T07:32:32.000Z","updated_at":"2025-03-20T13:07:10.000Z","dependencies_parsed_at":"2024-01-19T10:12:17.829Z","dependency_job_id":"37247f2e-8bfe-48da-ad86-60622efd52ac","html_url":"https://github.com/ntk148v/vim-horizon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntk148v%2Fvim-horizon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntk148v%2Fvim-horizon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntk148v%2Fvim-horizon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntk148v%2Fvim-horizon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ntk148v","download_url":"https://codeload.github.com/ntk148v/vim-horizon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249057344,"owners_count":21205903,"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":["hacktoberfest","neovim","vim","vim-colorscheme","vim-colorscheme-dark"],"created_at":"2024-08-01T19:00:59.075Z","updated_at":"2025-04-15T10:49:04.735Z","avatar_url":"https://github.com/ntk148v.png","language":"Vim Script","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eHorizon\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eHorizon is a beautifully warm dark colorscheme for Vim \u0026 inspired by \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=jolaleye.horizon-theme-vscode\"\u003eVisual Studio Code Horizon Theme\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/ntk148v/vim-horizon/blob/master/LICENSE\"\u003e\n        \u003cimg alt=\"GitHub license\" src=\"https://img.shields.io/github/license/ntk148v/vim-horizon?style=for-the-badge\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/ntk148v/vim-horizon/stargazers\"\u003e\u003cimg src=\"https://img.shields.io/github/stars/ntk148v/vim-horizon?colorA=192330\u0026colorB=719cd6\u0026style=for-the-badge\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/ntk148v/vim-horizon/issues\"\u003e\u003cimg src=\"https://img.shields.io/github/issues/ntk148v/vim-horizon?colorA=192330\u0026colorB=dbc074\u0026style=for-the-badge\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/ntk148v/vim-horizon/contributors\"\u003e\u003cimg src=\"https://img.shields.io/github/contributors/ntk148v/vim-horizon?colorA=192330\u0026colorB=81b29a\u0026style=for-the-badge\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/ntk148v/vim-horizon/network/members\"\u003e\u003cimg src=\"https://img.shields.io/github/forks/ntk148v/vim-horizon?colorA=192330\u0026colorB=9d79d6\u0026style=for-the-badge\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n- [1. Installation](#1-installation)\n- [2. Usage](#2-usage)\n- [3. Screenshots](#3-screenshots)\n- [4. Compatibility](#4-compatibility)\n- [5. Color Palette](#5-color-palette)\n\n## 1. Installation\n\n- Use [Vim Plug](https://github.com/junegunn/vim-plug)\n\n```vim\nPlug 'ntk148v/vim-horizon'\n```\n\n- Other Vim Plugin Management Tools should be the same.\n\n## 2. Usage\n\nPut something like this in your vimrc/init.vim:\n\n```vim\n\" if you don't set this option, this color might not correct\nset termguicolors\n\ncolorscheme horizon\n\n\" lightline\nlet g:lightline = {}\nlet g:lightline.colorscheme = 'horizon'\n\n\" or this line\nlet g:lightline = {'colorscheme' : 'horizon'}\n```\n\nTo apply lightline colorscheme without reloading:\n\n```vim\n:let g:lightline.colorscheme = 'horizon'\n:call lightline#init()\n:call lightline#colorscheme()\n```\n\n## 3. Screenshots\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/ntk148v/vim-horizon/master/screenshots/screenshot1.png\" alt=\"nightfox\" style=\"border-radius:1%\" /\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/ntk148v/vim-horizon/master/screenshots/screenshot2.png\" alt=\"nightfox\" style=\"border-radius:1%\" /\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/ntk148v/vim-horizon/master/screenshots/screenshot3.png\" alt=\"nightfox\" style=\"border-radius:1%\" /\u003e\n\u003c/div\u003e\n\n## 4. Compatibility\n\n- NeoVim/Vim\n- [True color support](https://github.com/termstandard/colors)\n\n\u003e Note for MacOS: The default `terminal` does not support `true color`. Use either `Iterm2` or [another] terminal that supports true color.\n\n## 5. Color Palette\n\n| Preview                                                            | Color       | Preview                                                            | Color       | Preview                                                            | Color       |\n| ------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------ | ----------- |\n| ![#09f7a0](https://via.placeholder.com/60x40/09f7a0/000000.png?text=+) | **#09f7a0** | ![#b877db](https://via.placeholder.com/60x40/b877db/000000.png?text=+) | **#b877db** | ![#fab795](https://via.placeholder.com/60x40/fab795/000000.png?text=+) | **#fab795** |\n| ![#6bdfe6](https://via.placeholder.com/60x40/6bdfe6/000000.png?text=+) | **#6bdfe6** | ![#d2d4de](https://via.placeholder.com/60x40/d2d4de/000000.png?text=+) | **#d2d4de** | ![#fab38e](https://via.placeholder.com/60x40/fab38e/000000.png?text=+) | **#fab38e** |\n| ![#1c1e26](https://via.placeholder.com/60x40/1c1e26/000000.png?text=+) | **#1c1e26** | ![#d5d8da](https://via.placeholder.com/60x40/d5d8da/000000.png?text=+) | **#d5d8da** | ![#95c4ce](https://via.placeholder.com/60x40/95c4ce/000000.png?text=+) | **#95c4ce** |\n| ![#21bfc2](https://via.placeholder.com/60x40/21bfc2/000000.png?text=+) | **#21bfc2** | ![#e95678](https://via.placeholder.com/60x40/e95678/000000.png?text=+) | **#e95678** | ![#f09483](https://via.placeholder.com/60x40/f09483/000000.png?text=+) | **#f09483** |\n| ![#25b0bc](https://via.placeholder.com/60x40/25b0bc/000000.png?text=+) | **#25b0bc** | ![#ec6a88](https://via.placeholder.com/60x40/ec6a88/000000.png?text=+) | **#ec6a88** |                                                                    |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntk148v%2Fvim-horizon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fntk148v%2Fvim-horizon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntk148v%2Fvim-horizon/lists"}