Kirbitz / neo-themes.nvim

A theme manager for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neo Themes Img

πŸ“‹ Table of Contents

✨ Introduction

Do you like Themes!?!?

But do you hate having to search the inter webs to find new themes for your neovim?

Well with this theme manager you don't have to search ever again.

This plugin gives you the ability to install and hot swap themes with ease.

⚑ Requirements

  • neovim >= 0.8.0
  • For Unix systems: git(1)

πŸ”Œ Installation

Packer

use("Kirbitz/neo-themes.nvim")

πŸ”§ Setup

require("neo_themes").setup()

πŸ”¨ Default configuration

local DEFAULT_SETTINGS = {
  install_directory = PathJoin(
    vim.fn.stdpath('data'),
    'site',
    'pack',
    'neo-themes',
    'start'
  ),
  cache_directory = PathJoin(vim.fn.stdpath('cache'), 'neo-themes'),
  git_clone = 'git -C %s clone %s --depth 1 --no-single-branch --progress',
  git_uri = 'https://github.com/%s.git',
  remove_completion = { --Removes these options from the completion list
    'blue',
    'darkblue',
    'default',
    'delek',
    'desert',
    'elford',
    'evening',
    'industry',
    'koehler',
    'morning',
    'murphy',
    'pablo',
    'peachpuff',
    'ron',
    'shine',
    'slate',
    'torte',
    'zellner',
  },
}

πŸ“· Screenshots

🚫 Under Construction.

This will get filled once the GUI is up and running.

πŸ“˜ License

About

A theme manager for neovim

License:MIT License


Languages

Language:Lua 100.0%