Shades of Purple Super dark theme for neovim using lua and lush
Find a file
Barna Máté 95de8b2780 Typescript changes
- Added c#, but partially works
2024-12-19 22:42:28 +01:00
colors initial 2024-12-16 19:18:38 +01:00
lua/shades_of_purple Typescript changes 2024-12-19 22:42:28 +01:00
LICENSE Added license 2024-12-18 14:26:00 +01:00
README.md - Added README 2024-12-18 14:23:38 +01:00

Shades of purple neovim

A port of the original vscode theme.
This theme is still balls deep into development but it's possible to use it.

Install

a. Using lazy.nvim

require('lazy').setup({

{ "https://git.4o1x5.dev/4o1x5/shades-of-purple-nvim", opts = {} },

})

b. Using nixvim

# inside nixvim
extraPlugins = with pkgs; [
    {
      plugin = pkgs.vimUtils.buildVimPlugin {
        pname = "shades_of_purple";
        version = "1.0.0";
        src = pkgs.fetchFromGitea {
            domain = "git.4o1x5.dev";
            owner = "4o1x5";
            repo = "shades-of-purple-nvim";
            rev = "ad6f6bf42b2cd4e6f9f5d798ba88e23a28d60b80";
            hash = "sha256-prkkBUFgbLvLAdMZvFlGaHIHINFiRX2rc97zEsQzz4g=";
        };
      }
    }
];

colorscheme = "shades_of_purple";

Btw by copying this you may not get the latest version, I recommend running the following to get the latest.

nix run nixpkgs#nurl -- https://git.4o1x5.dev/4o1x5/shades-of-purple-nvim  -f fetchFromGitea

Made possible with