An open API service indexing awesome lists of open source software.

https://github.com/ngscheurich/gloam-vim

🎨 A cool, moody colorscheme for Vim and vim-airline.
https://github.com/ngscheurich/gloam-vim

colorscheme vim vim-airline

Last synced: about 2 months ago
JSON representation

🎨 A cool, moody colorscheme for Vim and vim-airline.

Awesome Lists containing this project

README

          

# 🎨 gloam

![gloam](gloam.png)

A cool, moody colorscheme for [Vim](https://www.vim.org/) and
[vim-airline](https://github.com/vim-airline/vim-airline).

## Table of contents

* [gloam](#-gloam)
* [Table of Contents](#table-of-contents)
* [Prior Art](#prior-art)
* [Installation](#installation)
* [Roadmap](#roadmap)
* [Contibuting](#contibuting)
* [License](#license)

## Prior Art

gloam is heavily based on two of my favorite colorschemes,
[tender](https://github.com/jacoborus/tender.vim) and
[Greenery](https://github.com/Jaredk3nt/nova-theme). In fact, it’s
essentially a palette swap of tender, using mostly the Greenery colors.
Just as tender is, gloam is generated by [Estilo](https://github.com/jacoborus/estilo)
and the [gloam header image](https://github.com/ngscheurich/gloam-vim) is a direct
remix of [tender’s](https://cloud.githubusercontent.com/assets/829859/18413534/f7cb472c-77aa-11e6-86bf-9c790aadd2df.png).

Many thanks to [@jacoborus](https://github.com/jacoborus/) and
[@Jaredk3nt](https://github.com/Jaredk3nt) for their hard work!

## Installation

Install manually, or using the package manager of your choice:

```viml
" vim-plug
Plug 'ngscheurich/gloam.vim'

" NeoBundle
NeoBundle 'ngscheurich/gloam.vim'

" Vundle
Plugin 'ngscheurich/gloam.vim'
```

Once installed, set the colorscheme in your `.vimrc` or `init.vim`:

```viml
" Vim >=8.0 or Neovim >= 0.1.5
if (has("termguicolors"))
set termguicolors
endif

" Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1

# Enable syntax highlighting and set colorscheme
syntax enable
colorscheme gloam
```

You can use the included [vim-airline](https://github.com/vim-airline/vim-airline)
theme like:

```viml
let g:airline_theme = 'gloam'
```

Fix for MacVim (see: [issue](https://github.com/jacoborus/tender.vim/issues/9)):

```viml
let macvim_skip_colorscheme = 1
```

If you like gloam-vim and are an [iTerm2](https://www.iterm2.com/) user, you should
check out [gloam-iterm2](https://github.com/ngscheurich/gloam-iterm2).

## Roadmap

I plan to add aditional syntax themes for some of the languages I work
in frequently, including:

* [ ] Elixir
* [ ] Lua
* [ ] GDScript

## Contributing

Want to contribute? Awesome! Contributions are always welcome—just be sure to
read and follow the [code of conduct](https://github.com/ngscheurich/gloam.vim/blob/master/CODE_OF_CONDUCT.md).

## License

This project is released under the [MIT license](https://github.com/ngscheurich/gloam.vim/blob/master/LICENSE).