1
0
Fork 0

Update deps
All checks were successful
Build / build-arm64-linux (push) Successful in 20m5s
Build / build-amd64-linux (push) Successful in 54m50s

This commit is contained in:
Daniel Kempkens 2023-09-29 18:38:28 +02:00
parent df3af9e17a
commit 0d6d3b4fe3
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 46 additions and 38 deletions

View file

@ -300,11 +300,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1695738267, "lastModified": 1695984718,
"narHash": "sha256-LTNAbTQ96xSj17xBfsFrFS9i56U2BMLpD0BduhrsVkU=", "narHash": "sha256-LQwKgaaaFOkIcxarf0xQXeDJFwZ5BZWcgmPeo3xp2CM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0f4e5b4999fd6a42ece5da8a3a2439a50e48e486", "rev": "4f02e35f9d150573e1a710afa338846c2f6d850c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -323,11 +323,11 @@
}, },
"locked": { "locked": {
"dir": "contrib", "dir": "contrib",
"lastModified": 1695877042, "lastModified": 1696003022,
"narHash": "sha256-H41ZHk6KmaJAfcMVTyNJRkmIoGv6jIoADZW7uCk6D5w=", "narHash": "sha256-w6dp4Luk4yRbsZv8jym6r2N7bffgGHvXEo7dvZIwV8I=",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "19130415183763a572c50c8ae343dff8cc20526e", "rev": "54daf022ce989bb8ea34084f947ab85c045b690f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -346,11 +346,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1695897022, "lastModified": 1696005100,
"narHash": "sha256-Ef9FCKsPEnSoUmYUkbAN1KVIj6bR3WUcZEjWxyGY+ms=", "narHash": "sha256-TyJO/ZYRlR8xtPEIVRklgpidoyhHQXpvJxu2/MOwNXc=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "7c37aec82c6efb4e4de1aab977b7028a4bc0a39c", "rev": "e4583e0af947fd97959881c15308d2632829bf0d",
"revCount": 504, "revCount": 505,
"type": "git", "type": "git",
"url": "https://git.kempkens.io/daniel/nix-overlay" "url": "https://git.kempkens.io/daniel/nix-overlay"
}, },

View file

@ -1,8 +1,16 @@
(let [indent (require :ibl)] (let [ibl (require :ibl)
(indent.setup {:indent {:char "┆"} ibl-hooks (require :ibl.hooks)]
:scope {:char "┆"} (ibl.setup {:indent {:char "┆"}
:exclude {:buftypes [:help :scope {:char "┆"
:nofile :show_start false
:prompt :show_end false
:quickfix :highlight [:RainbowDelimiterRed
:terminal]}})) :RainbowDelimiterYellow
:RainbowDelimiterBlue
:RainbowDelimiterOrange
:RainbowDelimiterGreen
:RainbowDelimiterViolet
:RainbowDelimiterCyan]}
:exclude {:buftypes [:help :nofile :prompt :quickfix :terminal]}})
(ibl-hooks.register ibl-hooks.type.SCOPE_HIGHLIGHT
ibl-hooks.builtin.scope_highlight_from_extmark))

View file

@ -3,7 +3,7 @@
{:strategy {"" (. rainbow-delimiters :strategy :global) {:strategy {"" (. rainbow-delimiters :strategy :global)
:vim (. rainbow-delimiters :strategy :local)} :vim (. rainbow-delimiters :strategy :local)}
:query {"" :rainbow-delimiters :lua :rainbow-blocks} :query {"" :rainbow-delimiters :lua :rainbow-blocks}
:highlight [:RainbowDelimite :highlight [:RainbowDelimiterRed
:RainbowDelimiterYellow :RainbowDelimiterYellow
:RainbowDelimiterBlue :RainbowDelimiterBlue
:RainbowDelimiterOrange :RainbowDelimiterOrange

View file

@ -91,7 +91,7 @@ in
in in
'' ''
vim.loader.enable() vim.loader.enable()
vim.opt.runtimepath:append("${treesitter-parsers}") vim.opt.runtimepath:prepend("${treesitter-parsers}")
require('nifoc.nix') require('nifoc.nix')
require('configuration.init') require('configuration.init')

View file

@ -118,12 +118,12 @@ in
}; };
nvim-treesitter = buildVimPluginFrom2Nix { nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter"; pname = "nvim-treesitter";
version = "2023-09-28"; version = "2023-09-29";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nvim-treesitter"; owner = "nvim-treesitter";
repo = "nvim-treesitter"; repo = "nvim-treesitter";
rev = "cc2f94ed1dfa008c23e16bbd17f56b967ceb6740"; rev = "16ea2969ea0a5ba902fceece9b2db10c7c9ba2d6";
sha256 = "1nxcpidazzj3azb2yki8kfikdwg4r2jgjdp2a8lc14mk0r4q04z7"; sha256 = "0m1v1wiizqp7wfndjba6l52n3z4hkzsvq2imvgy7myqg091hj4hk";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -140,12 +140,12 @@ in
}; };
rainbow-delimiters-nvim = buildVimPluginFrom2Nix { rainbow-delimiters-nvim = buildVimPluginFrom2Nix {
pname = "rainbow-delimiters.nvim"; pname = "rainbow-delimiters.nvim";
version = "2023-09-26"; version = "2023-09-28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "HiPhish"; owner = "HiPhish";
repo = "rainbow-delimiters.nvim"; repo = "rainbow-delimiters.nvim";
rev = "6b9fc617ad52f25372d1855e049cae3af348bc09"; rev = "ece052dbcb2b3d2980f0f9881e41277929813644";
sha256 = "1wp8c9jjsgb517vq3yqjgaa2f62x64ccd82jrjiz735n7f8f3kgc"; sha256 = "05rc0mgn3jbp1aiac7531cidpc1s79qi1zhj2l7cz9353cfq0j47";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -162,12 +162,12 @@ in
}; };
telescope-nvim = buildVimPluginFrom2Nix { telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope.nvim"; pname = "telescope.nvim";
version = "2023-09-27"; version = "2023-09-29";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nvim-telescope"; owner = "nvim-telescope";
repo = "telescope.nvim"; repo = "telescope.nvim";
rev = "84d53dfdbefbdf84e861a288abc71ef8ccafd04e"; rev = "ffe90fac32122f401429b14d383137bd92a685d0";
sha256 = "1v3avmwxhlz0a8jqd8pixlrpj8fw1mnaa3j0nszpg83pnij07nb4"; sha256 = "1wf2kq3pv98fzy12hv19jg80r9phr96j2x5qvzbqfagglc1zb3jf";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -242,12 +242,12 @@ in
}; };
nvim-lspconfig = buildVimPluginFrom2Nix { nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig"; pname = "nvim-lspconfig";
version = "2023-09-28"; version = "2023-09-29";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neovim"; owner = "neovim";
repo = "nvim-lspconfig"; repo = "nvim-lspconfig";
rev = "68b23c06132cb1ef8d5690111c112388fbcf1c30"; rev = "61b40df9c17943e43e7e698873caab0e7dbcdadc";
sha256 = "07z9db5kx29ydjnparlqn1yx42pcx0q2i3fgx7m0j0mg2sgz82dy"; sha256 = "1dwrns9i46p3b53dkbhs76gic7i1s49mvdc2ka31qpx3yqks10g1";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -528,12 +528,12 @@ in
}; };
indent-blankline-nvim = buildVimPluginFrom2Nix { indent-blankline-nvim = buildVimPluginFrom2Nix {
pname = "indent-blankline.nvim"; pname = "indent-blankline.nvim";
version = "2023-09-28"; version = "2023-09-29";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lukas-reineke"; owner = "lukas-reineke";
repo = "indent-blankline.nvim"; repo = "indent-blankline.nvim";
rev = "f5335ef7493bd6adf5f2ae21d67240709a514408"; rev = "2ec42d26c933e7a129fe056dfc11a207afff252d";
sha256 = "0k3l15rb4443lqnr113jwrj5jaa2was68y0xv0q14fjwb7lj92bq"; sha256 = "1l2iqv7vb1v93rb9hqchgqlkss7lg5kiwwgb7x5czlxq2xyw7n7x";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -594,12 +594,12 @@ in
}; };
nvim-notify = buildVimPluginFrom2Nix { nvim-notify = buildVimPluginFrom2Nix {
pname = "nvim-notify"; pname = "nvim-notify";
version = "2023-09-10"; version = "2023-09-28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rcarriga"; owner = "rcarriga";
repo = "nvim-notify"; repo = "nvim-notify";
rev = "94859430020f5cf32a1b97ddd9e596fed9db7981"; rev = "e4a2022f4fec2d5ebc79afa612f96d8b11c627b3";
sha256 = "04fcm8277csv8davwirndinm0cpnb5h8azr2cxnw1szgqry2yh7k"; sha256 = "1a7s4y8xd1plcidnzs29rhqw7mfbj1q01bqffqjmimii9v6azmfn";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };