mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-03-07 09:16:01 +00:00
Compare commits
No commits in common. "bd2394112ffb92f247f6da90f04893f5e3f8a7ce" and "62090f43280f795618af118b398c22c48cbbd220" have entirely different histories.
bd2394112f
...
62090f4328
8 changed files with 5 additions and 56 deletions
|
|
@ -118,7 +118,6 @@ isMaximal: {
|
||||||
fidget-nvim.enable = true;
|
fidget-nvim.enable = true;
|
||||||
|
|
||||||
highlight-undo.enable = true;
|
highlight-undo.enable = true;
|
||||||
blink-indent.enable = true;
|
|
||||||
indent-blankline.enable = true;
|
indent-blankline.enable = true;
|
||||||
|
|
||||||
# Fun
|
# Fun
|
||||||
|
|
|
||||||
|
|
@ -232,8 +232,6 @@ https://github.com/gorbit99/codewindow.nvim
|
||||||
- Added [`grug-far.nvim`](https://github.com/MagicDuck/grug-far.nvim) the find
|
- Added [`grug-far.nvim`](https://github.com/MagicDuck/grug-far.nvim) the find
|
||||||
and replace tool for neovim.
|
and replace tool for neovim.
|
||||||
- Fix lsp `client.supports_method` deprecation warning in nvim v0.12.
|
- Fix lsp `client.supports_method` deprecation warning in nvim v0.12.
|
||||||
- Add [`blink.indent`](https://github.com/saghen/blink.indent) indent guidline
|
|
||||||
plugin.
|
|
||||||
|
|
||||||
[Ladas552](https://github.com/Ladas552)
|
[Ladas552](https://github.com/Ladas552)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
rust-jemalloc-sys,
|
rust-jemalloc-sys,
|
||||||
|
writeShellScriptBin,
|
||||||
}:
|
}:
|
||||||
rustPlatform.buildRustPackage (finalAttrs: {
|
rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
pname = "blink-cmp";
|
pname = "blink-cmp";
|
||||||
|
|
@ -21,11 +22,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
"info"
|
"info"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Tries to call git
|
|
||||||
preBuild = ''
|
|
||||||
rm build.rs
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
cp -r {lua,plugin} "$out"
|
cp -r {lua,plugin} "$out"
|
||||||
|
|
||||||
|
|
@ -48,6 +44,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
|
|
||||||
cargoHash = "sha256-Qdt8O7IGj2HySb1jxsv3m33ZxJg96Ckw26oTEEyQjfs=";
|
cargoHash = "sha256-Qdt8O7IGj2HySb1jxsv3m33ZxJg96Ckw26oTEEyQjfs=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
(writeShellScriptBin "git" "exit 1")
|
||||||
|
];
|
||||||
|
|
||||||
env = {
|
env = {
|
||||||
RUSTC_BOOTSTRAP = true;
|
RUSTC_BOOTSTRAP = true;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{lib, ...}: let
|
|
||||||
inherit (lib.options) mkEnableOption;
|
|
||||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
||||||
in {
|
|
||||||
options.vim.visuals.blink-indent = {
|
|
||||||
enable = mkEnableOption "indentation guides [blink-indent]";
|
|
||||||
setupOpts = mkPluginSetupOption "blink-indent" {};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
inherit (lib.modules) mkIf;
|
|
||||||
|
|
||||||
cfg = config.vim.visuals.blink-indent;
|
|
||||||
in {
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
vim.lazy.plugins.blink-indent = {
|
|
||||||
package = "blink-indent";
|
|
||||||
setupModule = "blink.indent";
|
|
||||||
inherit (cfg) setupOpts;
|
|
||||||
|
|
||||||
event = ["BufEnter"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./config.nix
|
|
||||||
./blink-indent.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
@ -7,7 +7,6 @@ in {
|
||||||
toggles under individual options.
|
toggles under individual options.
|
||||||
'')
|
'')
|
||||||
|
|
||||||
./blink-indent
|
|
||||||
./cellular-automaton
|
./cellular-automaton
|
||||||
./cinnamon-nvim
|
./cinnamon-nvim
|
||||||
./fidget-nvim
|
./fidget-nvim
|
||||||
|
|
|
||||||
|
|
@ -91,19 +91,6 @@
|
||||||
"url": "https://github.com/moyiz/blink-emoji.nvim/archive/f22ce8cac02a6ece05368220f1e38bd34fe376f9.tar.gz",
|
"url": "https://github.com/moyiz/blink-emoji.nvim/archive/f22ce8cac02a6ece05368220f1e38bd34fe376f9.tar.gz",
|
||||||
"hash": "sha256-pPHESNsByHg2liNUYkUEVR1wP1MZcil1sKTqrNI53e4="
|
"hash": "sha256-pPHESNsByHg2liNUYkUEVR1wP1MZcil1sKTqrNI53e4="
|
||||||
},
|
},
|
||||||
"blink-indent": {
|
|
||||||
"type": "Git",
|
|
||||||
"repository": {
|
|
||||||
"type": "GitHub",
|
|
||||||
"owner": "saghen",
|
|
||||||
"repo": "blink.indent"
|
|
||||||
},
|
|
||||||
"branch": "main",
|
|
||||||
"submodules": false,
|
|
||||||
"revision": "9c80820ca77218a8d28e70075d6f44a1609911fe",
|
|
||||||
"url": "https://github.com/saghen/blink.indent/archive/9c80820ca77218a8d28e70075d6f44a1609911fe.tar.gz",
|
|
||||||
"hash": "sha256-SS66JZFCX8viYxYaObASlwtrG5h7yHbVvRBVXBNXkng="
|
|
||||||
},
|
|
||||||
"blink-ripgrep-nvim": {
|
"blink-ripgrep-nvim": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue