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