1
0
Fork 0

nvim: updates
All checks were successful
Build / build-amd64-linux (push) Successful in 3m52s
Build / build-arm64-linux (push) Successful in 4m55s

This commit is contained in:
Daniel Kempkens 2024-01-21 00:01:17 +01:00
parent 93fde740e7
commit a01956a323
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 73 additions and 29 deletions

View file

@ -290,6 +290,7 @@
"dir": "contrib", "dir": "contrib",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "98a4ed0a110625e63950d85b26f3e4614393ea04",
"type": "github" "type": "github"
} }
}, },
@ -304,11 +305,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1705716075, "lastModified": 1705788789,
"narHash": "sha256-0s0OQtscSdewcaaELjOE6RbxnfpCHgXkSF481qvfvO8=", "narHash": "sha256-yPNoTRPi5w69vgnZGa3IPErDUuGzaHIn8wBPmgcIbqA=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "81dcd871ad2f3d92ed41dcc4f15462ea4def75a3", "rev": "8a346a1db4636f53b472f8df3b79137f554b6066",
"revCount": 674, "revCount": 676,
"type": "git", "type": "git",
"url": "https://git.kempkens.io/daniel/nix-overlay" "url": "https://git.kempkens.io/daniel/nix-overlay"
}, },
@ -371,11 +372,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1705666311, "lastModified": 1705697961,
"narHash": "sha256-VYdSQm7zq3AStyHhRr3SBCTA8fVzrl6WtIlXTs2Wlts=", "narHash": "sha256-XepT3WS516evSFYkme3GrcI3+7uwXHqtHbip+t24J7E=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a455c5fb3ee513e2f443838a0e84d52b035adb67", "rev": "e5d1c87f5813afde2dda384ac807c57a105721cc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -446,11 +447,11 @@
"nixpkgs-stable": "nixpkgs-stable_2" "nixpkgs-stable": "nixpkgs-stable_2"
}, },
"locked": { "locked": {
"lastModified": 1705229514, "lastModified": 1705757126,
"narHash": "sha256-itILy0zimR/iyUGq5Dgg0fiW8plRDyxF153LWGsg3Cw=", "narHash": "sha256-Eksr+n4Q8EYZKAN0Scef5JK4H6FcHc+TKNHb95CWm+c=",
"owner": "cachix", "owner": "cachix",
"repo": "pre-commit-hooks.nix", "repo": "pre-commit-hooks.nix",
"rev": "ffa9a5b90b0acfaa03b1533b83eaf5dead819a05", "rev": "f56597d53fd174f796b5a7d3ee0b494f9e2285cc",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -95,6 +95,49 @@
(highlight :NeogitDiffDelete {:fg mod.colors.comment :bg mod.colors.red}) (highlight :NeogitDiffDelete {:fg mod.colors.comment :bg mod.colors.red})
(highlight :NeogitDiffDeleteHighlight (highlight :NeogitDiffDeleteHighlight
{:fg mod.colors.black :bg mod.colors.bright_red}) {:fg mod.colors.black :bg mod.colors.bright_red})
(highlight :NeogitCursorLine {:fg mod.colors.fg :bg mod.colors.visual})) (highlight :NeogitCursorLine {:fg mod.colors.fg :bg mod.colors.visual})
;; nvim-treesitter
(highlight-link "@variable.parameter" "@parameter")
(highlight-link "@variable.member" "@field")
(highlight-link "@module" "@namespace")
(highlight-link "@number.float" "@float")
(highlight-link "@string.special.symbol" "@symbol")
(highlight-link "@string.regexp" "@string.regex")
(highlight-link "@markup.strong" "@text.strong")
(highlight-link "@markup.italic" "@text.emphasis")
(highlight-link "@markup.underline" "@text.underline")
(highlight-link "@markup.strikethrough" "@text.strike")
(highlight-link "@markup.heading" "@text.title")
(highlight-link "@markup.quote" "@text.quote")
(highlight-link "@markup.link.url" "@text.uri")
(highlight-link "@markup.math" "@text.math")
(highlight-link "@markup.environment" "@text.environment")
(highlight-link "@markup.environment.name" "@text.environment.name")
(highlight-link "@markup.link" "@text.reference")
(highlight-link "@markup.raw" "@text.literal")
(highlight-link "@markup.raw.block" "@text.literal.block")
(highlight-link "@markup.link.label" "@string.special")
(highlight-link "@markup.list" "@punctuation.special")
(highlight-link "@function.method" "@method")
(highlight-link "@function.method.call" "@method.call")
(highlight-link "@comment.todo" "@text.todo")
(highlight-link "@comment.error" "@text.danger")
(highlight-link "@comment.warning" "@text.warning")
(highlight-link "@comment.hint" "@text.note")
(highlight-link "@comment.info" "@text.note")
(highlight-link "@comment.note" "@text.note")
(highlight-link "@comment.ok" "@text.note")
(highlight-link "@diff.plus" "@text.diff.add")
(highlight-link "@diff.minus" "@text.diff.delete")
(highlight-link "@diff.delta" "@text.diff.change")
(highlight-link "@string.special.url" "@text.uri")
(highlight-link "@keyword.directive" "@preproc")
(highlight-link "@keyword.storage" "@storageclass")
(highlight-link "@keyword.directive" "@define")
(highlight-link "@keyword.conditional" "@conditional")
(highlight-link "@keyword.debug" "@debug")
(highlight-link "@keyword.exception" "@exception")
(highlight-link "@keyword.import" "@include")
(highlight-link "@keyword.repeat" "@repeat"))
mod) mod)

View file

@ -121,8 +121,8 @@ in
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nvim-treesitter"; owner = "nvim-treesitter";
repo = "nvim-treesitter"; repo = "nvim-treesitter";
rev = "1eb22367b97e277a7fbcf53f5de86167e1d2f523"; rev = "5cc562748729b6dc9563ea5a3d676ff102ab38b1";
sha256 = "0lhlyhybqdbkkclrsjs5bzp64hmzwxbmxynbxja5lqcp317jc408"; sha256 = "0iwvly9i9yb0x3708kvbjr4mzxay0jrvnlhwdvrvq0zsir9j72ra";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -139,12 +139,12 @@ in
}; };
rainbow-delimiters-nvim = buildVimPlugin { rainbow-delimiters-nvim = buildVimPlugin {
pname = "rainbow-delimiters.nvim"; pname = "rainbow-delimiters.nvim";
version = "2024-01-18"; version = "2024-01-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "HiPhish"; owner = "HiPhish";
repo = "rainbow-delimiters.nvim"; repo = "rainbow-delimiters.nvim";
rev = "8b6099f24e435036a628798585f95f62fb892838"; rev = "1951d157c07a0349c2d1af62a4ca61443aafc89a";
sha256 = "0zqznpyig34cgh3rfkjbgyb3s31zgv7z9a18hwg3yz73ac5q8m9x"; sha256 = "1418czcc4hxn8phgin5v46ryxl4nagq6zhd01qqri4f4dn2k72pc";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -230,12 +230,12 @@ in
}; };
nvim-lspconfig = buildVimPlugin { nvim-lspconfig = buildVimPlugin {
pname = "nvim-lspconfig"; pname = "nvim-lspconfig";
version = "2024-01-19"; version = "2024-01-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neovim"; owner = "neovim";
repo = "nvim-lspconfig"; repo = "nvim-lspconfig";
rev = "042aa6b27b8b8d4f4e1bd42de2037c83d676a8a0"; rev = "8917d2c830e04bf944a699b8c41f097621283828";
sha256 = "0gg39lw853r9kvfzkcdp55yymryl9nsr7ggq8ml6szvlkmb8rydl"; sha256 = "0wiqy0k83qjh2y9r3rdm8jrrfmrwfm2729wrshxmxbdns0vjrmja";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -252,12 +252,12 @@ in
}; };
schemastore-nvim = buildVimPlugin { schemastore-nvim = buildVimPlugin {
pname = "schemastore.nvim"; pname = "schemastore.nvim";
version = "2024-01-19"; version = "2024-01-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "b0o"; owner = "b0o";
repo = "schemastore.nvim"; repo = "schemastore.nvim";
rev = "22156da516a2555800232e8406738b05951cb1bf"; rev = "0f86f114e099c008a7cca8f6deea072207f81204";
sha256 = "1r3vvar2pzpqbj2kdqq55bq22yicc6bg8vm10826zp6nzfbrxvss"; sha256 = "02clmz7cfvkacbj3sd0i0df041ls2spdvh2x13j9y2nmm656a5sk";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -296,12 +296,12 @@ in
}; };
nvim-lint = buildVimPlugin { nvim-lint = buildVimPlugin {
pname = "nvim-lint"; pname = "nvim-lint";
version = "2024-01-18"; version = "2024-01-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mfussenegger"; owner = "mfussenegger";
repo = "nvim-lint"; repo = "nvim-lint";
rev = "b32127ba52f3a1f7dc86773c2ca3f0029afa12c1"; rev = "2cf9ad095130755d7d87f1730bcf33c91ee822e4";
sha256 = "19pxi87ji05hyp3xc1z8v3q4gqc9ggq27sg9wrjfi6zsym04xgw5"; sha256 = "1ssb0xwki31gi83apq5apfmc7d9dyfdyshrg8pf6w36v0b6s17b3";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -516,12 +516,12 @@ in
}; };
gitsigns-nvim = buildVimPlugin { gitsigns-nvim = buildVimPlugin {
pname = "gitsigns.nvim"; pname = "gitsigns.nvim";
version = "2024-01-12"; version = "2024-01-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lewis6991"; owner = "lewis6991";
repo = "gitsigns.nvim"; repo = "gitsigns.nvim";
rev = "4aaacbf5e5e2218fd05eb75703fe9e0f85335803"; rev = "c5ff7628e19a47ec14d3657294cc074ecae27b99";
sha256 = "0583bcg23hf4clg6r737ns6whg9hinz3rn0bmvs6692lmrjsiinb"; sha256 = "1gwpiq3fdjg3b6hg82lq7i0cxfyyb89cr079jc9ja36ypwbkclkl";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };