neo2005/config/options.nix

32 lines
693 B
Nix
Raw Normal View History

2024-12-10 07:38:15 +01:00
{ pkgs, ... }: {
2024-12-21 19:29:50 +01:00
colorscheme = "shades_of_purple";
2024-12-10 07:38:15 +01:00
opts = {
number = true;
relativenumber = true;
};
# Set <Space> as leader
globals.mapleader = " ";
2024-12-21 19:29:50 +01:00
extraPlugins = with pkgs; [
{
2024-12-21 19:29:50 +01:00
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=";
};
};
}
2024-12-21 19:29:50 +01:00
vimPlugins.lush-nvim
];
2024-12-10 07:38:15 +01:00
}