disable leaderf on riscv
This commit is contained in:
parent
ddf225bd33
commit
b94004651a
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue