A cool, moody colorscheme for Vim and vim-airline.
gloam is heavily based on two of my favorite colorschemes, tender and Greenery. In fact, it’s essentially a palette swap of tender, using mostly the Greenery colors. Just as tender is, gloam is generated by Estilo and the gloam header image is a direct remix of tender’s.
Many thanks to @jacoborus and @Jaredk3nt for their hard work!
Install manually, or using the package manager of your choice:
" 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
:
" 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 theme like:
let g:airline_theme = 'gloam'
Fix for MacVim (see: issue):
let macvim_skip_colorscheme = 1
If you like gloam-vim and are an iTerm2 user, you should check out gloam-iterm2.
I plan to add aditional syntax themes for some of the languages I work in frequently, including:
- Elixir
- Lua
- GDScript
Want to contribute? Awesome! Contributions are always welcome—just be sure to read and follow the code of conduct.
This project is released under the MIT license.