farout/README.md
2025-01-18 15:56:13 +01:00

86 lines
3.1 KiB
Markdown

![Far Out](img/far_out.png)
FarOut colorscheme for Vim:
- Base16 theme for gvim and terminals supporting 24-bit colors
- Simple, clean code created with [RNB](https://gist.github.com/5cd2f4ec222805f49eca.git)
- Airline, Lightline & CtrlP support out-of-the-box
- That theme is so far out, can you dig it man?
Screenshots
------------
Taken on minTTY with Office Code Pro font:
[![](img/farout_vim_thumb.png)](img/farout_vim.png)
Palette
--------
<p>#F2DDBC<p> <p style="color:#F2DDBC">the quick brown fox jumps over the lazy dog</p>
- #E0CCAE <p style="color:#E0CCAE">the quick brown fox jumps over the lazy dog</p>
- #A4896F <p style="color:#A4896F">the quick brown fox jumps over the lazy dog</p>
- #A4895C <p style="color:#A4896F">the quick brown fox jumps over the lazy dog</p>
- #66292F <p style="color:#66292F">the quick brown fox jumps over the lazy dog</p>
- #8A4B53 <p style="color:#8A4B53">the quick brown fox jumps over the lazy dog</p>
- #BF472C <p style="color:#BF472C">the quick brown fox jumps over the lazy dog</p>
- #D47D49 <p style="color:#D47D49">the quick brown fox jumps over the lazy dog</p>
- #F2A766 <p style="color:#F2A766">the quick brown fox jumps over the lazy dog</p>
- #A67458 <p style="color:#A67458">the quick brown fox jumps over the lazy dog</p>
- #6B4035 <p style="color:#6B4035">the quick brown fox jumps over the lazy dog</p>
- #291916 <p style="color:#291916">the quick brown fox jumps over the lazy dog</p>
- #1F1311 <p style="color:#1F1311">the quick brown fox jumps over the lazy dog</p>
- #0F0908 <p style="color:#0F0908">the quick brown fox jumps over the lazy dog</p>
Installation
-------------
1. Install the bundle:
* [Pathogen][1] - `git clone https://github.com/fcpg/vim-farout ~/.vim/bundle/vim-farout`
* [NeoBundle][2] - `NeoBundle 'fcpg/vim-farout'`
* [Vundle][3] - `Plugin 'fcpg/vim-farout'`
* [Plug][4] - `Plug 'fcpg/vim-farout'`
* manual - copy all files into your `~/.vim` directory
2. Append the following line to your .vimrc file:
```VimL
colorscheme farout
```
FAQ
----
- How do I customize colors?
* Either edit the 'colors/farout.vim' file (it's plain vim 'highlight' commands), if you don't mind merging when pulling/updating;
* Or override with autocommands in you .vimrc:
```VimL
augroup myBetterColors
au!
autocmd ColorScheme * hi Number guifg=#707070
augroup END
```
- Some weird chars show up in my status line!
Check vim help for 'fillchars': `:h 'fcs`. The lightline theme use the 'stl'
char in 'fillchars' if it is defined; unset it in your .vimrc to turn on the
"solid" status line.
Resources
----------
- Included in this repo ('misc' subdir):
- Shell script for terminal settings (generic OSC commands)
- .Xresources
- .minttyrc
- .dir_colors
Other Themes
-------------
- [Fahrenheit](https://github.com/fcpg/vim-fahrenheit)
- [Orbital](https://github.com/fcpg/vim-orbital)
License
--------
[Attribution-ShareAlike 4.0 Int.](https://creativecommons.org/licenses/by-sa/4.0/)
[1]: https://github.com/tpope/vim-pathogen
[2]: https://github.com/Shougo/neobundle.vim
[3]: https://github.com/gmarik/vundle
[4]: https://github.com/junegunn/vim-plug