Compare commits
3 Commits
cab1f08217
...
63f71b0936
| Author | SHA1 | Date | |
|---|---|---|---|
| 63f71b0936 | |||
| 1eab196fb4 | |||
| 717ae4c034 |
@ -250,9 +250,6 @@ rec {
|
|||||||
# Determine the project root, used e.g. in cmake scripts
|
# Determine the project root, used e.g. in cmake scripts
|
||||||
set -g -x FLAKE_PROJECT_ROOT (git rev-parse --show-toplevel)
|
set -g -x FLAKE_PROJECT_ROOT (git rev-parse --show-toplevel)
|
||||||
|
|
||||||
# Build the provided NixOS package
|
|
||||||
abbr -a build "nix build -L"
|
|
||||||
|
|
||||||
# Rust Bevy:
|
# Rust Bevy:
|
||||||
# abbr -a build-release-windows "CARGO_FEATURE_PURE=1 cargo xwin build --release --target x86_64-pc-windows-msvc"
|
# abbr -a build-release-windows "CARGO_FEATURE_PURE=1 cargo xwin build --release --target x86_64-pc-windows-msvc"
|
||||||
|
|
||||||
@ -273,6 +270,7 @@ rec {
|
|||||||
''
|
''
|
||||||
|
|
||||||
# Qt: Launch into wrapped fish shell
|
# Qt: Launch into wrapped fish shell
|
||||||
|
# https://nixos.org/manual/nixpkgs/stable/#sec-language-qt
|
||||||
# ''
|
# ''
|
||||||
# fishdir=$(mktemp -d)
|
# fishdir=$(mktemp -d)
|
||||||
# makeWrapper "$(type -p fish)" "$fishdir/fish" "''${qtWrapperArgs[@]}"
|
# makeWrapper "$(type -p fish)" "$fishdir/fish" "''${qtWrapperArgs[@]}"
|
||||||
|
|||||||
@ -501,6 +501,7 @@ in {
|
|||||||
markdown = ["prettierd" "prettier"];
|
markdown = ["prettierd" "prettier"];
|
||||||
nix = ["alejandra"];
|
nix = ["alejandra"];
|
||||||
python = ["black"];
|
python = ["black"];
|
||||||
|
qml = ["qmlformat"];
|
||||||
svelte = ["prettierd" "prettier"];
|
svelte = ["prettierd" "prettier"];
|
||||||
typescript = ["prettierd" "prettier"];
|
typescript = ["prettierd" "prettier"];
|
||||||
rust = ["rustfmt"];
|
rust = ["rustfmt"];
|
||||||
@ -829,6 +830,13 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "qmlls";
|
||||||
|
extraOptions.cmd = [
|
||||||
|
"qmlls"
|
||||||
|
"-E" # Use QML_IMPORT_PATH env variable
|
||||||
|
];
|
||||||
|
}
|
||||||
{name = "svelte";}
|
{name = "svelte";}
|
||||||
{name = "tailwindcss";}
|
{name = "tailwindcss";}
|
||||||
{name = "texlab";}
|
{name = "texlab";}
|
||||||
|
|||||||
Reference in New Issue
Block a user