Skip to content

hiszd/fleet.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clrtheme.nvim

Clear dark and light theme for Neovim using tjdevries/colorbuddy.vim

Based on snazzybuddy by bbenzikry

Installation

" With Vim-Plug
Plug 'tjdevries/colorbuddy.nvim'
Plug 'hiszd/clrtheme.nvim'

" Enable the color scheme
colorscheme clrtheme
-- With packer
use 'tjdevries/colorbuddy.nvim'
use 'hiszd/clrtheme.nvim'
--  in your lua config
require('clrtheme')

Switching between theme versions

function ThemeToggle()
    if vim.g.background == 'dark' then
        vim.g.background = 'light'
    else
        vim.g.background = 'dark'
    end
    require('clrtheme').reload()
end

--- ... map this function to any keybinding

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published