Compare commits
2 commits
89056e3d5d
...
bf20ca501e
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | bf20ca501e | ||
Bruno BELANYI | eebcc1f0ed |
|
@ -53,8 +53,8 @@ if utils.is_executable("pyright") then
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
if utils.is_executable("ruff-lsp") then
|
if utils.is_executable("ruff") then
|
||||||
lspconfig.ruff_lsp.setup({
|
lspconfig.ruff.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = lsp.on_attach,
|
on_attach = lsp.on_attach,
|
||||||
})
|
})
|
||||||
|
|
4
overlays/gruvbox-nvim-delimiters/default.nix
Normal file
4
overlays/gruvbox-nvim-delimiters/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
self: prev:
|
||||||
|
{
|
||||||
|
vimPlugins = prev.vimPlugins.extend (self.callPackage ./generated.nix { });
|
||||||
|
}
|
14
overlays/gruvbox-nvim-delimiters/generated.nix
Normal file
14
overlays/gruvbox-nvim-delimiters/generated.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ fetchpatch, ... }:
|
||||||
|
|
||||||
|
_final: prev: {
|
||||||
|
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (oa: {
|
||||||
|
patches = (oa.patches or [ ]) ++ [
|
||||||
|
# https://github.com/ellisonleao/gruvbox.nvim/pull/319
|
||||||
|
(fetchpatch {
|
||||||
|
name = "add-Delimiter-highlight-group.patch";
|
||||||
|
url = "https://github.com/ellisonleao/gruvbox.nvim/commit/20f90039564b293330bf97acc36dda8dd9e721a0.patch";
|
||||||
|
hash = "";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in a new issue