33 lines
717 B
Nix
33 lines
717 B
Nix
{ pkgs, ... }: {
|
|
colorscheme = "shades_of_purple";
|
|
|
|
opts = {
|
|
number = true;
|
|
relativenumber = true;
|
|
};
|
|
|
|
# Set <Space> as leader
|
|
globals.mapleader = " ";
|
|
|
|
extraPlugins = with pkgs; [
|
|
{
|
|
plugin = pkgs.vimUtils.buildVimPlugin
|
|
{
|
|
pname = "shades_of_purple";
|
|
version = "1.0.1"; # dummy version
|
|
src = pkgs.fetchFromGitea
|
|
{
|
|
domain = "git.4o1x5.dev";
|
|
owner = "4o1x5";
|
|
repo = "shades-of-purple-nvim";
|
|
rev = "c009b792d7e23e5fa988e8741997506cc53c52b1";
|
|
hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k=";
|
|
};
|
|
};
|
|
}
|
|
|
|
vimPlugins.lush-nvim
|
|
];
|
|
|
|
}
|