FrenzyExists / aquarium-vim-old

🌊 Aquarium, a simple vibrant dark theme for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aquarium Banner


A colorful, dark cozy Neovim colorscheme.

NOTE: THIS REPO WILL BE MOVED SOON AS LUA DEVELOPMENT WILL TAKE HIGHER PRIORITY. NEW NEOVIM (LUA) AND VIM (VISCRIPT) SOON. I apoligize the sudden change

Currently aquarium is at a very early stage, there's a large need for ports. At the time of this writting, you can visit my dotfiles for terminal configurations as well as my tmux config, which is partly ripped from Hi I'm Bored.

Getting Started

Aquarium currently has a vimscript version only, expect a lua version soon!

Quick Start

  • vim-plug
Plug 'frenzyexists/aquarium-vim', { 'branch': 'vimscript_version' }

" Future plans for lua version are around, somewhere, i hope
  • packer
use {
    'frenzyexists/aquarium-vim',
    branch = 'vimscript_version'
}

Features and Stuff

The vimscript version currently have some support for a few plugins, bellow a list of supported plugins:

To Enable aquarium theme for Lualine, specify the theme in your lua config:

require('lualine').setup {
  options = {
    theme = 'aquarium'
    -- ... your lualine config
  }
}

Variables n Stuff

g.aqua_bold = 1 -- Bold stuff

Modes

Aquarium now has Light Mode!

-- To enable Lightmode change the style variable:
local g = vim.g

-- options: "light", "dark"
g.aquarium_style = "light"

Airline

-- Airline has two themes :D
local g = vim.g

-- options:
--   base16_aquarium_light
--   base16_aquarium_dark
g.airline_theme = "base16_aquarium_light"

Screenshots

Here's a demo of how it looks on NvChad

Light Variant Colors Preview

Pallete

Aquarium Palette

Contributing

Aquarium is open-source, and will always be forever and ever.

There's a lot of ways to contribute, creating ports in particular. For example, you could submit a pull request a suggestion/enchantment for this color theme.

Other ways you can contribute is by adding a config of your favorite program using aquarium colors over here.

To-do list

  • Add Scheme switch script
  • Glorify theme
  • Add Mish Theme
  • Profit (hehe)

About

🌊 Aquarium, a simple vibrant dark theme for neovim


Languages

Language:Vim Script 100.0%