utility/precognition: fix typos, manual fmt

This commit is contained in:
Nowaaru 2024-11-04 00:06:41 -07:00
parent ffc8045d8c
commit a53a44bf13
No known key found for this signature in database

View file

@ -1,10 +1,7 @@
{ lib, ... }:
let
{lib, ...}: let
inherit (lib.options) mkEnableOption mkOption literalExpression;
inherit (lib.types) attrsOf listOf str bool int submodule;
in
{
in {
options.vim.utility.motion.precognition = rec {
enable = mkEnableOption "precognition.nvim plugin";
@ -26,7 +23,7 @@ in
example = literalExpression ''
{ link = "Comment"; }
# or
{ foreground = "#0000FF", background = "#000000" };
{ foreground = "#0000FF"; background = "#000000"; };
'';
default = {link = "Comment";};
description = "The highlight for the virtual text.";