{"id":23379042,"url":"https://github.com/colevoss/nvimpire","last_synced_at":"2026-02-03T23:02:58.588Z","repository":{"id":149223745,"uuid":"586471555","full_name":"colevoss/nvimpire","owner":"colevoss","description":"Updated Dracula Theme For Neovim","archived":false,"fork":false,"pushed_at":"2023-10-09T01:33:31.000Z","size":57,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-01T22:45:24.468Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","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/colevoss.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}},"created_at":"2023-01-08T09:04:32.000Z","updated_at":"2025-01-08T11:47:31.000Z","dependencies_parsed_at":"2023-05-23T10:15:26.965Z","dependency_job_id":null,"html_url":"https://github.com/colevoss/nvimpire","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/colevoss/nvimpire","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colevoss%2Fnvimpire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colevoss%2Fnvimpire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colevoss%2Fnvimpire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colevoss%2Fnvimpire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/colevoss","download_url":"https://codeload.github.com/colevoss/nvimpire/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colevoss%2Fnvimpire/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29060635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T22:28:58.191Z","status":"ssl_error","status_checked_at":"2026-02-03T22:28:56.515Z","response_time":96,"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-12-21T19:16:18.907Z","updated_at":"2026-02-03T23:02:58.574Z","avatar_url":"https://github.com/colevoss.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvimpire\n\n[Dracula](https://draculatheme.com/) colors cheme built for Neovim 0.8+ using Lua that supports and\ncustomizes several popular Neovim plugins.\n\n![Transparent Nvimpire](https://user-images.githubusercontent.com/2539760/212601732-0b5d030c-6589-4eb5-92d3-9c6a41f3b854.png)\n![Opaque Nvimpire](https://user-images.githubusercontent.com/2539760/212601864-552178ec-d328-45bc-ab00-a052a2021546.png)\n\n\n\n## Install\n\n### Packer\n\n```lua\nuse { 'colevoss/nvimpire' }\n```\n\n### Usage\n\n```lua\nlocal colorscheme = 'nvimpire'\nlocal colorscheme_status_ok, _ = pcall(vim.cmd, \"colorscheme \" .. colorscheme)\nif not colorscheme_status_ok then\n  vim.notify(\"could not set color scheme to nvimpire\")\n  return\nend\n```\n\n#### Transparent Mode\n\nBy default, the colorscheme is not transparent, but was built with transparency in mind. In fact it was\nbuilt transparency first, and later updated for non-transparent setups.\n\n```lua\nlocal nvimpire = require('nvimpire')\nlocal colorscheme = 'nvimpire'\n\nlocal colorscheme_status_ok, _ = pcall(vim.cmd, \"colorscheme \" .. colorscheme)\nif not colorscheme_status_ok then\n  vim.notify(\"could not set color scheme to nvimpire\")\n  return\nend\n\nnvimpire.setup {\n  transparent = true\n}\n```\n\n## Supported Plugins\n\nNvimpire customizes the following plugins\n* [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)\n* [telescope](https://github.com/nvim-telescope/telescope.nvim)\n* [nvim-tree](https://github.com/nvim-tree/nvim-tree.lua)\n* [neo-tree](https://github.com/nvim-neo-tree/neo-tree.nvim)\n* [gitsigns](https://github.com/lewis6991/gitsigns.nvim)\n* [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)\n* [trouble](https://github.com/folke/trouble.nvim)\n* [navic](https://github.com/SmiteshP/nvim-navic)\n* [mason](https://github.com/williamboman/mason.nvim)\n* [fidget](https://github.com/j-hui/fidget.nvim)\n* [notify](https://github.com/rcarriga/nvim-notify)\n* [illuminate](https://github.com/RRethy/vim-illuminate)\n\n## Inspiration\n\n[Dracula](https://draculatheme.com/vim) is my favorite colorscheme for pretty much all things. While I used their amazing Vim colorscheme I\nwanted more customization and support for various plugins as well as a better transparent mode. I also thought\na Lua version would be great so I created my own version of it and built support for all my favorite Neovim\nplugins.\n\nThis is my first Neovim plugin or colorscheme and I drew a lot of architecture inspiration from other popular Neovim colorschemes like\n[Catppuccin](https://github.com/catppuccin/nvim) and [tokyonight](https://github.com/folke/tokyonight.nvim).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolevoss%2Fnvimpire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcolevoss%2Fnvimpire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolevoss%2Fnvimpire/lists"}