mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-12 20:13:19 +00:00
Compare commits
1 commit
659067a44f
...
5e67a982e7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5e67a982e7 |
8 changed files with 0 additions and 118 deletions
|
@ -165,7 +165,6 @@ isMaximal: {
|
||||||
motion = {
|
motion = {
|
||||||
hop.enable = true;
|
hop.enable = true;
|
||||||
leap.enable = true;
|
leap.enable = true;
|
||||||
precognition.enable = isMaximal;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
images = {
|
images = {
|
||||||
|
|
|
@ -216,7 +216,3 @@ everyone.
|
||||||
[Bloxx12](https://github.com/Bloxx12):
|
[Bloxx12](https://github.com/Bloxx12):
|
||||||
|
|
||||||
- Fix internal breakage in `elixir-tools` setup.
|
- Fix internal breakage in `elixir-tools` setup.
|
||||||
|
|
||||||
[Nowaaru](https://github.com/Nowaaru):
|
|
||||||
|
|
||||||
- Add `precognition-nvim`.
|
|
||||||
|
|
17
flake.lock
generated
17
flake.lock
generated
|
@ -1421,22 +1421,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"plugin-precognition-nvim": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1730325090,
|
|
||||||
"narHash": "sha256-onY1Aa+dwLR1wRua52hpSXj6zZOZXjkUlDjDa0xEEcE=",
|
|
||||||
"owner": "tris203",
|
|
||||||
"repo": "precognition.nvim",
|
|
||||||
"rev": "0189e8d6f96275a079b2805d68d49414871885cd",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "tris203",
|
|
||||||
"repo": "precognition.nvim",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"plugin-project-nvim": {
|
"plugin-project-nvim": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -1896,7 +1880,6 @@
|
||||||
"plugin-otter-nvim": "plugin-otter-nvim",
|
"plugin-otter-nvim": "plugin-otter-nvim",
|
||||||
"plugin-oxocarbon": "plugin-oxocarbon",
|
"plugin-oxocarbon": "plugin-oxocarbon",
|
||||||
"plugin-plenary-nvim": "plugin-plenary-nvim",
|
"plugin-plenary-nvim": "plugin-plenary-nvim",
|
||||||
"plugin-precognition-nvim": "plugin-precognition-nvim",
|
|
||||||
"plugin-project-nvim": "plugin-project-nvim",
|
"plugin-project-nvim": "plugin-project-nvim",
|
||||||
"plugin-registers": "plugin-registers",
|
"plugin-registers": "plugin-registers",
|
||||||
"plugin-rose-pine": "plugin-rose-pine",
|
"plugin-rose-pine": "plugin-rose-pine",
|
||||||
|
|
|
@ -525,11 +525,6 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
plugin-precognition-nvim = {
|
|
||||||
url = "github:tris203/precognition.nvim";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Note-taking
|
# Note-taking
|
||||||
plugin-obsidian-nvim = {
|
plugin-obsidian-nvim = {
|
||||||
url = "github:epwalsh/obsidian.nvim";
|
url = "github:epwalsh/obsidian.nvim";
|
||||||
|
|
|
@ -2,6 +2,5 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
./hop
|
./hop
|
||||||
./leap
|
./leap
|
||||||
./precognition
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
inherit (lib.modules) mkIf;
|
|
||||||
|
|
||||||
cfg = config.vim.utility.motion.precognition;
|
|
||||||
in {
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
vim = {
|
|
||||||
startPlugins = ["precognition-nvim"];
|
|
||||||
luaConfigRC.precognition = lib.nvim.dag.entryAnywhere ''
|
|
||||||
require('precognition').setup(${lib.nvim.lua.toLuaObject cfg.setupOpts})
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./precognition.nix
|
|
||||||
./config.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,66 +0,0 @@
|
||||||
{lib, ...}: let
|
|
||||||
inherit (lib.options) mkEnableOption mkOption literalExpression;
|
|
||||||
inherit (lib.types) attrsOf listOf str bool int submodule;
|
|
||||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
||||||
|
|
||||||
mkHintType = description:
|
|
||||||
mkOption {
|
|
||||||
inherit description;
|
|
||||||
default = {};
|
|
||||||
type = attrsOf (submodule {
|
|
||||||
options = {
|
|
||||||
text = mkOption {
|
|
||||||
type = str;
|
|
||||||
description = "The easier-to-read depiction of the motion";
|
|
||||||
};
|
|
||||||
|
|
||||||
prio = mkOption {
|
|
||||||
type = int;
|
|
||||||
default = 1;
|
|
||||||
description = "The priority of the hint";
|
|
||||||
example = 10;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
options.vim.utility.motion.precognition = {
|
|
||||||
enable = mkEnableOption "assisted motion discovery[precognition.nvim]";
|
|
||||||
setupOpts = mkPluginSetupOption "precognition.nvim" {
|
|
||||||
startVisible = mkOption {
|
|
||||||
type = bool;
|
|
||||||
default = true;
|
|
||||||
description = "Whether to start 'precognition' automatically";
|
|
||||||
};
|
|
||||||
|
|
||||||
showBlankVirtLine = mkOption {
|
|
||||||
type = bool;
|
|
||||||
default = true;
|
|
||||||
description = "Whether to show a blank virtual line when no movements are shown";
|
|
||||||
};
|
|
||||||
|
|
||||||
highlightColor = mkOption {
|
|
||||||
type = attrsOf str;
|
|
||||||
default = {link = "Comment";};
|
|
||||||
example = literalExpression ''
|
|
||||||
{ link = "Comment"; }
|
|
||||||
# or
|
|
||||||
{ foreground = "#0000FF"; background = "#000000"; };
|
|
||||||
'';
|
|
||||||
description = "The highlight for the virtual text";
|
|
||||||
};
|
|
||||||
|
|
||||||
disabled_fts = mkOption {
|
|
||||||
type = listOf str;
|
|
||||||
default = ["startify"];
|
|
||||||
example = literalExpression ''["startify"]'';
|
|
||||||
description = "Filetypes that automatically disable 'precognition'";
|
|
||||||
};
|
|
||||||
|
|
||||||
hints = mkHintType "What motions display, and at what priority";
|
|
||||||
gutterHints = mkHintType ''
|
|
||||||
What motions display and at what priority. Only appears in gutters
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue