helix: use upstream version
This commit is contained in:
parent
8ab86a1204
commit
af0fd0f55e
6 changed files with 129 additions and 27 deletions
|
@ -1,7 +1,10 @@
|
|||
pkgs: let
|
||||
helix = pkgs.callPackage ./helix.nix {};
|
||||
{
|
||||
pkgs,
|
||||
helix,
|
||||
}: let
|
||||
wrapped-helix = pkgs.callPackage ./helix.nix {inherit helix;};
|
||||
kakoune = pkgs.callPackage ./kakoune.nix {};
|
||||
fish = pkgs.callPackage ./shell {};
|
||||
in {
|
||||
inherit helix kakoune fish;
|
||||
inherit wrapped-helix kakoune fish;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
alejandra,
|
||||
basedpyright,
|
||||
bash-language-server,
|
||||
black,
|
||||
clang-tools,
|
||||
clippy,
|
||||
cmake-format,
|
||||
|
@ -15,25 +14,23 @@
|
|||
gdb,
|
||||
golangci-lint-langserver,
|
||||
gopls,
|
||||
helix,
|
||||
lazygit,
|
||||
lib,
|
||||
lldb_19,
|
||||
marksman,
|
||||
nil,
|
||||
pyright,
|
||||
nixd,
|
||||
ruff,
|
||||
rust-analyzer,
|
||||
rustfmt,
|
||||
shellcheck,
|
||||
shfmt,
|
||||
solargraph,
|
||||
stdenv,
|
||||
superhtml,
|
||||
taplo,
|
||||
tinymist,
|
||||
typescript-language-server,
|
||||
vscode-langservers-extracted,
|
||||
helix,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.meta) getExe;
|
||||
|
@ -277,6 +274,8 @@
|
|||
wrapped-helix = symlinkJoin {
|
||||
name = "helix-wrapped";
|
||||
paths = [
|
||||
helix
|
||||
|
||||
# Bash
|
||||
bash-language-server
|
||||
# C/C++
|
||||
|
@ -284,12 +283,12 @@
|
|||
clippy
|
||||
golangci-lint-langserver
|
||||
gopls
|
||||
helix
|
||||
lldb_19
|
||||
# Markdown
|
||||
marksman
|
||||
# Nix
|
||||
nil
|
||||
nixd
|
||||
rust-analyzer
|
||||
rustfmt
|
||||
# Shell
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue