Compare commits

..

No commits in common. "0256cebaca7690307fbf71b310b8fdb422160210" and "5768956e7375b773abb7e2584f7de1a528fe3a46" have entirely different histories.

3 changed files with 17 additions and 3 deletions

View file

@ -14,14 +14,14 @@
plugin = pkgs.vimUtils.buildVimPlugin plugin = pkgs.vimUtils.buildVimPlugin
{ {
pname = "shades_of_purple"; pname = "shades_of_purple";
version = "1.0.2"; # dummy version version = "1.0.1"; # dummy version
src = pkgs.fetchFromGitea src = pkgs.fetchFromGitea
{ {
domain = "git.4o1x5.dev"; domain = "git.4o1x5.dev";
owner = "4o1x5"; owner = "4o1x5";
repo = "shades-of-purple-nvim"; repo = "shades-of-purple-nvim";
rev = "bf962ffd82f7fce5f89cc6e54e995a90f37feb4b"; rev = "c009b792d7e23e5fa988e8741997506cc53c52b1";
hash = "sha256-NokpQsg/mUpjkhRRthNyLvCf9ZEmxlbvNmFUlL0y+Y0="; hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k=";
}; };
}; };
} }

View file

@ -5,6 +5,19 @@
]; ];
plugins = { plugins = {
clipboard-image = {
enable = true;
clipboardPackage = pkgs.wl-clipboard;
};
image = {
enable = helpers.enableExceptInTests;
integrations.markdown = {
clearInInsertMode = true;
onlyRenderImageAtCursor = true;
};
};
markdown-preview = { markdown-preview = {
enable = true; enable = true;
}; };

View file

@ -20,3 +20,4 @@
}; };
}; };
} }