https://github.com/aesophor/base16-faded
A faded yet colorful colorscheme for Vim
https://github.com/aesophor/base16-faded
base16 colorscheme vim
Last synced: about 1 year ago
JSON representation
A faded yet colorful colorscheme for Vim
- Host: GitHub
- URL: https://github.com/aesophor/base16-faded
- Owner: aesophor
- License: mit
- Created: 2018-03-03T14:25:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T01:08:19.000Z (about 7 years ago)
- Last Synced: 2025-04-06T16:50:38.090Z (about 1 year ago)
- Topics: base16, colorscheme, vim
- Language: Vim script
- Size: 5.86 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# base16-faded
A faded yet colorful scheme for Vim.
## Requirements
We have to prepare .Xresources first. Save [the colorscheme file](https://github.com/aesophor/dotfiles/blob/master/.x/colorscheme/base16-faded) as `~/.x/colorscheme/base16-faded`,
then add the following two lines in .Xresources
```
! Colors (Replace aesophor with your username)
#include "/home/aesophor/.x/colorscheme/base16-faded"
```
## Installation
* Installing via [Vundle](https://github.com/VundleVim/Vundle.vim#quick-start):
add to .vimrc in the Vundle plugin section.
```
Plugin 'aesophor/base16-faded'
```
then fire up vim, and run `:PluginInstall`
* Installing via [Pathogen](https://github.com/tpope/vim-pathogen#installation):
```
cd ~/.vim/bundle
git clone https://github.com/aesophor/base16-faded
```
## Post-Installation
Enable base16-faded in your .vimrc
```
set t_Co=256
syntax on
colorscheme base16-faded
```
Also consider install the [vim-airline](https://github.com/vim-airline/vim-airline) plugin to enable an airline theme,
I'm using [minimalist](https://github.com/dikiaap/minimalist) by [dikiaap](https://github.com/dikiaap/) for example.
```
let g:airline_theme='minimalist'
let g:airline#extensions#tabline#enabled = 1
```
## License
Available under the [MIT License](https://github.com/aesophor/dotfiles/blob/master/LICENSE).