https://github.com/akiicat/vim-github-theme
Github color theme for vim
https://github.com/akiicat/vim-github-theme
colorscheme github github-theme vim vim-plugin vim-theme
Last synced: 9 months ago
JSON representation
Github color theme for vim
- Host: GitHub
- URL: https://github.com/akiicat/vim-github-theme
- Owner: akiicat
- License: mit
- Created: 2022-11-12T08:36:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T07:02:47.000Z (about 3 years ago)
- Last Synced: 2025-01-28T14:47:13.355Z (11 months ago)
- Topics: colorscheme, github, github-theme, vim, vim-plugin, vim-theme
- Language: Vim Script
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Vim Github Theme
Github color theme for vim.
## Support themes:
- [x] Light default
- [x] Light high contrast
- [x] Light Protanopia & Deuteranopia
- [x] Light Tritanopia
- [x] Dark default
- [x] Dark high contrast
- [x] Dark Protanopia & Deuteranopia
- [x] Dark Tritanopia
- [x] Dark dimmed
## Screenshots

## Install
### Download
Vim-Plug
```vim
Plug 'akiicat/vim-github-theme'
```
### Coloring
Full color
```vim
set termguicolors
```
256 Colors
```vim
set t_Co=256
set t_ut=
set notermguicolors
```
16 Colors
```vim
set t_Co=16
set t_ut=
set notermguicolors
```
### Enable in .vimrc
Select one of them
```vim
colorscheme github_dark
colorscheme github_dark_high_contrast
colorscheme github_dark_protanopia_deuteranopia
colorscheme github_dark_tritanopia
colorscheme github_dark_dimmed
colorscheme github_light
colorscheme github_light_high_contrast
colorscheme github_light_protanopia_deuteranopia
colorscheme github_light_tritanopia
```