{"id":13572679,"url":"https://github.com/connorholyday/vim-snazzy","last_synced_at":"2025-04-06T12:09:07.000Z","repository":{"id":39303411,"uuid":"129811691","full_name":"connorholyday/vim-snazzy","owner":"connorholyday","description":"Elegant vim theme with bright colors.","archived":false,"fork":false,"pushed_at":"2022-07-30T06:24:09.000Z","size":7259,"stargazers_count":340,"open_issues_count":6,"forks_count":34,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-30T10:09:29.582Z","etag":null,"topics":["colorscheme","snazzy","theme","vim","vim-colorscheme","vim-theme"],"latest_commit_sha":null,"homepage":"","language":"Vim script","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/connorholyday.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}},"created_at":"2018-04-16T22:07:01.000Z","updated_at":"2025-03-20T11:35:48.000Z","dependencies_parsed_at":"2022-07-20T13:18:46.607Z","dependency_job_id":null,"html_url":"https://github.com/connorholyday/vim-snazzy","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/connorholyday%2Fvim-snazzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connorholyday%2Fvim-snazzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connorholyday%2Fvim-snazzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connorholyday%2Fvim-snazzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/connorholyday","download_url":"https://codeload.github.com/connorholyday/vim-snazzy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478323,"owners_count":20945266,"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":["colorscheme","snazzy","theme","vim","vim-colorscheme","vim-theme"],"created_at":"2024-08-01T14:01:32.360Z","updated_at":"2025-04-06T12:09:06.981Z","avatar_url":"https://github.com/connorholyday.png","language":"Vim script","funding_links":[],"categories":["Vim script","Vim Script"],"sub_categories":[],"readme":"# vim-snazzy\n\n\u003e Elegant vim theme with bright colors. Based on [hyper-snazzy](https://github.com/sindresorhus/hyper-snazzy/) by [Sindre Sorhus](https://sindresorhus.com).\n\nThis is still an early build, I'll be implementing better language support as I use this more myself.\n\nAll feedback, comments, and PRs welcome.\n\n## Screenshots\n\n### PHP\n![](images/snazzy-php.jpg)\n\n### CSS\n![](images/snazzy-css.jpg)\n\n### JS\n![](images/snazzy-js.jpg)\n\n### JSX\n![](images/snazzy-jsx.jpg)\n\n## Installation\n\n### Vundle or vim-plug\nTo install using [Vundle](https://github.com/VundleVim/Vundle.vim) or [vim-plug](https://github.com/junegunn/vim-plug)\nadd one of the following line to your .vimrc\n\n```vim\n\" vundle\nPlugin 'connorholyday/vim-snazzy'\n\n\" vim-plug\nPlug 'connorholyday/vim-snazzy'\n```\n\n### Pathogen\nTo install using [Pathogen](https://github.com/tpope/vim-pathogen) run the following command\n```\ncd ~/.vim/bundle \u0026\u0026 git clone git@github.com:connorholyday/vim-snazzy.git\n```\n\n### Manually\nTo install manually download https://raw.githubusercontent.com/connorholyday/vim-snazzy/master/colors/snazzy.vim\n\nPlace the file in `~/.vim/colors/` or `\u003cyour-vim-dir\u003e\\vimfiles\\colors\\` on Windows.\n\nFor Neovim place the file in `~/.config/nvim/colors/`\n\n## Running\n\nTo load the color scheme run\n```\n:colorscheme snazzy\n```\n\nTo always use the snazzy color scheme add the following line to your .vimrc\n```\ncolorscheme snazzy\n```\n\n## Options\n\n### Transparent Background\n\nAdd this to your vim config\n`let g:SnazzyTransparent = 1`\n\n### Lightline\nEnable the [Lightline](https://github.com/itchyny/lightline.vim) colorscheme\n```\nlet g:lightline = {\n\\ 'colorscheme': 'snazzy',\n\\ }\n```\n\n## Contributing\nThere are only a couple of things you need to know if you want to help out:\n1. All of the code lives inside `colors/snazzy.vim`\n2. The variables for the palette are set at the top\n3. `:exe` is used so we can use the variables via string concatenation\n4. If you're adding a new section, try to keep it to a new block and title it with a comment\n\nThere is a `test/` directory for language files that you can use to test out the highlighting, feel free to improve them or include your language of choice.\n\nHere's a list of helpful plugins and articles to get you started:\n- [Colorizer](https://github.com/chrisbra/Colorizer) – Shows you the visual representation of colours\n- [HiLinkTrace](http://vim.wikia.com/wiki/Identify_the_syntax_highlighting_group_used_at_the_cursor) - Used to tell you the syntax group for your highlight rule\n- [hexHighlight](https://www.vim.org/scripts/script.php?script_id=2937) - (gVim) Shows you the colours that the hex-values represent\n- [Vimcasts: Creating colorschemes for vim](http://vimcasts.org/episodes/creating-colorschemes-for-vim/)\n- [Working with vim colorschemes](https://jordanelver.co.uk/blog/2015/05/27/working-with-vim-colorschemes/)\n\n\n## Related\n\n- [iterm2-snazzy](https://github.com/sindresorhus/iterm2-snazzy) - iTerm2 version\n- [terminal-snazzy](https://github.com/sindresorhus/terminal-snazzy) - Terminal version\n- [konsole-snazzy](https://github.com/miedzinski/konsole-snazzy) - Konsole version\n- [vscode-snazzy](https://github.com/Tyriar/vscode-snazzy) - VS Code version\n- [emacs-snazzy](https://github.com/weijiangan/emacs-snazzy) - Emacs version\n- [termite-snazzy](https://github.com/kbobrowski/termite-snazzy) - Termite version\n- [deepin-snazzy](https://github.com/xxczaki/deepin-snazzy) - Linux Deepin terminal version\n- [kitty-snazzy](https://github.com/connorholyday/kitty-snazzy) - Kitty version\n\n\n## License\n\nMIT © [Connor Holyday](https://holyday.me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnorholyday%2Fvim-snazzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconnorholyday%2Fvim-snazzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnorholyday%2Fvim-snazzy/lists"}