disable leaderf on riscv

This commit is contained in:
Charlotte 🦝 Delenk 2024-07-02 09:10:26 +02:00
parent ddf225bd33
commit b94004651a

View file

@ -1,5 +1,8 @@
{pkgs, ...}: {
output.plugins = with pkgs.vimPlugins; [LeaderF];
output.plugins =
if pkgs.system != "riscv64-linux"
then with pkgs.vimPlugins; [LeaderF]
else [];
vim.g = {
Lf_UseCache = 0;
Lf_UseMemoryCache = 0;