All Projects → Murtaza-Udaipurwala → gruvqueen

Murtaza-Udaipurwala / gruvqueen

Licence: GPL-3.0 license
Port of famous gruvbox theme in lua(inspired by gruvbox-material)

Programming Languages

lua
6591 projects
Vim Script
2826 projects

Projects that are alternatives of or similar to gruvqueen

Darcula
A Vim color scheme reproduction of the official JetBrains IDE Darcula theme
Stars: ✭ 158 (+276.19%)
Mutual labels:  colorscheme, dark-theme, nvim
vim-lighthaus
A Lighthaus theme for (n)vim, vim-airline and lightline
Stars: ✭ 33 (-21.43%)
Mutual labels:  colorscheme, nvim
substrata.nvim
A cold, dark color scheme for Neovim
Stars: ✭ 89 (+111.9%)
Mutual labels:  colorscheme, nvim
nightfox.nvim
🦊A highly customizable theme for vim and neovim with support for lsp, treesitter and a variety of plugins.
Stars: ✭ 1,489 (+3445.24%)
Mutual labels:  colorscheme, nvim
vscode.nvim
Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code
Stars: ✭ 362 (+761.9%)
Mutual labels:  colorscheme, nvim
npp-darcula
Dark theme for Notepad++ based on Darcula theme from JetBrains products
Stars: ✭ 114 (+171.43%)
Mutual labels:  colorscheme, dark-theme
hyperterm-gruvbox
Hyperterm theme based on gruvbox
Stars: ✭ 16 (-61.9%)
Mutual labels:  dark-theme, gruvbox
Purify
🌈 Clean & vibrant color schemes for Vim, Terminals...
Stars: ✭ 142 (+238.1%)
Mutual labels:  colorscheme, nvim
nvim-highlite
A colorscheme template that is "lite" on logic for the developer.
Stars: ✭ 163 (+288.1%)
Mutual labels:  colorscheme, nvim
aquarium-vim
🌊 Aquarium, a simple vibrant dark theme for vim 🗒
Stars: ✭ 151 (+259.52%)
Mutual labels:  colorscheme, nvim
blossom.vim
a simple pinkish vim colorscheme designed for cursive italics
Stars: ✭ 18 (-57.14%)
Mutual labels:  colorscheme, nvim
vscode-theme-gruvbox-minor
Gruvbox theme for Visual Studio Code
Stars: ✭ 17 (-59.52%)
Mutual labels:  dark-theme, gruvbox
Vim Color Spring Night
Low-contrast calm color scheme for Vim
Stars: ✭ 227 (+440.48%)
Mutual labels:  colorscheme, dark-theme
dotfiles
💾 personal configuration files
Stars: ✭ 42 (+0%)
Mutual labels:  nvim, gruvbox
onedark.nvim
One dark and light colorscheme for neovim >= 0.5.0 written in lua based on Atom's One Dark and Light theme. Additionally, it comes with 5 color variant styles
Stars: ✭ 425 (+911.9%)
Mutual labels:  dark-theme, nvim
angr.vim
A pleasant, mild, dark (n)vim theme.
Stars: ✭ 53 (+26.19%)
Mutual labels:  colorscheme, nvim
Elrodeo Vim Colorscheme
Dark low-contrast color scheme for Vim
Stars: ✭ 32 (-23.81%)
Mutual labels:  colorscheme, dark-theme
Swatch.vim
work with hex color codes and make your own vim colorschemes easily and quickly
Stars: ✭ 57 (+35.71%)
Mutual labels:  colorscheme, nvim
cosme.vim
Cosmetic color scheme for Vim
Stars: ✭ 63 (+50%)
Mutual labels:  colorscheme, dark-theme
nord.nvim
Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support
Stars: ✭ 412 (+880.95%)
Mutual labels:  colorscheme, nvim

Gruvqueen

Opinionated port of famous gruvbox theme (inspired by gruvbox-material)

** font☝️ : JetBrains Mono Nerd Font

Features

  • 3 styles to choose from - original, mix, material.
  • Both light and dark variants available.

Requirements

  • Neovim >= 0.5

Installation

  • packer
use 'Murtaza-Udaipurwala/gruvqueen'
  • vim-plug
Plug 'Murtaza-Udaipurwala/gruvqueen'

🚀Usage

lua

vim.o.background = "dark" -- or light if you so prefer

require("gruvqueen").setup({
    config = {
        disable_bold = false,
        italic_comments = true,
        italic_keywords = true,
        italic_functions = true,
        italic_variables = true,
        invert_selection = true,
        style = 'original', -- possible values: 'original', 'mix', 'material'
        transparent_background = false,
        -- bg_color = "black",
    },
})

vimscript

set background = 'dark' " or 'light' if you so prefer
let g:gruvqueen_disable_bold = v:false
let g:gruvqueen_italic_comments = v:true
let g:gruvqueen_italic_keywords = v:true
let g:gruvqueen_italic_functions = v:true
let g:gruvqueen_italic_variables = v:true
let g:gruvqueen_invert_selection = v:true
let g:gruvqueen_style = 'original' " possible values: 'original', 'mix', 'material'
let g:gruvqueen_transparent_background = v:false
" let g:gruvqueen_background_color = '#10151a'

colorscheme gruvqueen

tmux(fix undercurl)

set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:RGB"

# undercurl support
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'

# undercurl colours - needs tmux-3.0
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m'

🤩Supported plugins

  • Treesitter
  • LSP
  • Telescope
  • IndentBlankLine
  • gitsigns.nvim
  • vim-easymotion
  • nvim-ts-rainbow
  • nvim-tree
  • undotree
  • startify
  • Lualine

All PR are welcomed😄. Open Issues for discussions/bugs/feature suggestion.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].