farout/README.md

87 lines
3.1 KiB
Markdown
Raw Normal View History

2017-10-06 08:02:41 +02:00
![Far Out](img/far_out.png)
2017-10-02 15:52:23 +02:00
FarOut colorscheme for Vim:
- Base16 theme for gvim and terminals supporting 24-bit colors
2017-12-30 15:59:46 +01:00
- Simple, clean code created with [RNB](https://gist.github.com/5cd2f4ec222805f49eca.git)
2017-10-02 15:52:23 +02:00
- 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
--------
2025-01-18 15:55:17 +01:00
2025-01-18 15:58:47 +01:00
<p style="color:#F2DDBC">#F2DDBC the quick brown fox jumps over the lazy dog</p>
<p style="color:#E0CCAE">#E0CCAE the quick brown fox jumps over the lazy dog</p>
<p style="color:#A4896F">#A4896F the quick brown fox jumps over the lazy dog</p>
<p style="color:#A4896C">#A4895C the quick brown fox jumps over the lazy dog</p>
<p style="color:#66292F">#66292F the quick brown fox jumps over the lazy dog</p>
<p style="color:#8A4B53">#8A4B53 the quick brown fox jumps over the lazy dog</p>
<p style="color:#BF472C">#BF472C the quick brown fox jumps over the lazy dog</p>
<p style="color:#D47D49">#D47D49 the quick brown fox jumps over the lazy dog</p>
<p style="color:#F2A766">#F2A766 the quick brown fox jumps over the lazy dog</p>
<p style="color:#A67458">#A67458 the quick brown fox jumps over the lazy dog</p>
<p style="color:#6B4035">#6B4035 the quick brown fox jumps over the lazy dog</p>
<p style="color:#291916">#291916 the quick brown fox jumps over the lazy dog</p>
<p style="color:#1F1311">#1F1311 the quick brown fox jumps over the lazy dog</p>
<p style="color:#0F0908">#0F0908 the quick brown fox jumps over the lazy dog</p>
2025-01-18 15:55:17 +01:00
2017-10-02 15:52:23 +02:00
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'`
2017-10-02 15:52:23 +02:00
* 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
2017-10-06 08:02:41 +02:00
Other Themes
-------------
- [Fahrenheit](https://github.com/fcpg/vim-fahrenheit)
- [Orbital](https://github.com/fcpg/vim-orbital)
2017-10-02 15:52:23 +02:00
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
2017-12-30 15:59:46 +01:00
[4]: https://github.com/junegunn/vim-plug