Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Vim Fusion #28

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Use your favorite package-manager to install, and enjoy!
| [flattened] | Solarized, without the bullshit | ✓ (16) | ✓ |
| [focuspoint] | Maintain color coordination and important keyword focus | | ✓ |
| [fogbell] | Minimal grey monotone with 3 variants | ✓ | ✓ |
| [fusion] | Radioactie dark colorscheme for vim | ✓ | ✓ |
| [github] | Based on Github's syntax highlighting | ✓ | ✓ |
| [gotham] | Very dark vim colorscheme | ✓ | ✓ |
| [gruvbox] | Retro groove color scheme | ✓ | ✓ |
Expand Down Expand Up @@ -92,6 +93,7 @@ Use your favorite package-manager to install, and enjoy!
[flattened]: https://github.com/romainl/flattened
[focuspoint]: https://github.com/chase/focuspoint-vim
[fogbell]: https://github.com/jaredgorski/fogbell.vim
[fusion]: https://github.com/lfenzo/vim-fusion
[github]: https://github.com/endel/vim-github-colorscheme
[gotham]: https://github.com/whatyouhide/vim-gotham
[gruvbox]: https://github.com/morhetz/gruvbox
Expand Down
64 changes: 64 additions & 0 deletions docs/fusion-vim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
```{python}
___ ___ ___ ___ ___
/\__\ /\ \ /\__\ /\ \ /\ \
/:/ _/_ \:\ \ /:/ _/_ ___ /::\ \ \:\ \
/:/ /\__\ \:\ \ /:/ /\ \ /\__\ /:/\:\ \ \:\ \
/:/ /:/ / ___ \:\ \ /:/ /::\ \ /:/__/ /:/ \:\ \ _____\:\ \
/:/_/:/ / /\ \ \:\__\ /:/_/:/\:\__\ /::\ \ /:/__/ \:\__\ /::::::::\__\
\:\/:/ / \:\ \ /:/ / \:\/:/ /:/ / \/\:\ \__ \:\ \ /:/ / \:\~~\~~\/__/
\::/__/ \:\ /:/ / \::/ /:/ / ~~\:\/\__\ \:\ /:/ / \:\ \
\:\ \ \:\/:/ / \/_/:/ / \::/ / \:\/:/ / \:\ \
\:\__\ \::/ / /:/ / /:/ / \::/ / \:\__\
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/

```

Vim Fusion is a neutral dark 256-color colorscheme for Vim/NeoVim. Vim Fusion works optimally with [vim-polyglot](https://github.com/sheerun/vim-polyglot) thanks to some of its syntax highlighting definitions; the installation of this plugin is not mandatory but keep in mind that some of the highlightings may not work exactly as shown when it is not installed.

![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/cover.png)

## :hammer_and_wrench: Installation

For any of the methods described below add the following line to your `.vimrc` (or `init.vim`):

```console
colorscheme fusion
```
### Manual Installation

Clone the vim-fusion repo and add the file `fusion.vim` to the `colors` directory inside `.vim`. In case you don't have it: `mkdir ~/.vim/colors`. For NeoVim the same applies but for the `nvim` directory inside `~/.config/`.

### Using vim-plug

Inside the ``call plug#begin( ) ... plug#end`` add the following:

```console
Plug 'lfenzo/vim-fusion'
```
And then, `:w`, `:source %` and `:PlugInstall`.

## :money_with_wings: Donate

It's up to you, if you really enjoyed this colorscheme feel free to pay me a coffee (or perhaps a beer)...

**ETH:** `0x0C66c04c8098720998B2049C7a6bF6BbB751cb8e`

## :camera_flash: Screenshots

### Python
![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/python.png)

### C++
![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/cplusplus.png)

### Javascript
![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/javascript.png)

### LaTeX
![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/latex.png)

### HTML & CSS
![](https://raw.githubusercontent.com/lfenzo/vim-fusion/main/screenshots/html-css.png)

### JSON & XML
![](https://github.com/lfenzo/vim-fusion/blob/main/screenshots/json-xml.png)
1 change: 1 addition & 0 deletions pull-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ function _main() {
_dl dikiaap/minimalist
_dl endel/vim-github-colorscheme
_dl fcpg/vim-orbital
_dl lfenzo/vim-fusion
_dl fmoralesc/molokayo
_dl gilgigilgil/anderson.vim
_dl gregsexton/Atom
Expand Down