Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwcz/icecube.nvim
A cool dark colorscheme based on Iceberg.
https://github.com/mwcz/icecube.nvim
Last synced: 3 months ago
JSON representation
A cool dark colorscheme based on Iceberg.
- Host: GitHub
- URL: https://github.com/mwcz/icecube.nvim
- Owner: mwcz
- License: mit
- Created: 2022-11-07T17:11:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T13:56:00.000Z (5 months ago)
- Last Synced: 2024-09-14T04:34:17.904Z (5 months ago)
- Language: Lua
- Size: 1.51 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Icecube
=======A cool, icy colorscheme based heavily on Iceberg and built using zenburn.nvim as a template.
![screenshot of some Rust code with icecube.nvim](./images/screenshot01.png)
Installation
------------Using your favorite package manager:
[vim-plug](https://github.com/junegunn/vim-plug)
```vim
Plug "mwcz/icecube.nvim"
```[packer](https://github.com/wbthomason/packer.nvim)
```lua
use {
"mwcz/icecube.nvim",
config = function() require("icecube").setup() end
}
```[paq](https://github.com/savq/paq-nvim)
```lua
require("paq") {
"mwcz/icecube.nvim";
}
```Setup
-----With VimScript:
```vim
colorscheme icecube
```With lua:
```lua
require("icecube").setup()
```To set the theme in lualine:
```lua
require("lualine").setup {
options = {
theme = "icecube",
}
}
```Status
------Icecube is in *Alpha* status, being based on Zenburm.nvim which is itself in
alpha. I created this by copying the colors from Iceberg's `iceberg.vim` file
into the Zenburn.nvim repo. Probably a bad move, but I felt more comfortable
with the lua-based layout of Zenburn.nvim, and wanted to use it to make tweaks
to Iceberg.Contributing
------------Pull requests are always welcome, especially for additional plugins and for
cleaning up the excessive highlight groups that I copied in from `iceberg.vim`.
Please include one or more screenshots showcasing your contribution.