mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 06:55:58 +01:00
utility/precognition: fix typos, manual fmt
This commit is contained in:
parent
ffc8045d8c
commit
a53a44bf13
1 changed files with 7 additions and 10 deletions
|
@ -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,9 +23,9 @@ in
|
|||
example = literalExpression ''
|
||||
{ link = "Comment"; }
|
||||
# or
|
||||
{ foreground = "#0000FF", background = "#000000" };
|
||||
{ foreground = "#0000FF"; background = "#000000"; };
|
||||
'';
|
||||
default = { link = "Comment"; };
|
||||
default = {link = "Comment";};
|
||||
description = "The highlight for the virtual text.";
|
||||
};
|
||||
|
||||
|
@ -53,7 +50,7 @@ in
|
|||
|
||||
disabled_fts = mkOption {
|
||||
type = listOf str;
|
||||
default = [ "startify" ];
|
||||
default = ["startify"];
|
||||
example = literalExpression ''[ "startify" ]'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue