1

Compare commits

...

3 Commits

2 changed files with 11 additions and 2 deletions

View File

@ -200,6 +200,9 @@ rec {
# Dynamic libraries from buildinputs:
# LD_LIBRARY_PATH = nixpkgs.lib.makeLibraryPath buildInputs;
# QT imports to use with "qmlls -E"
# QML_IMPORT_PATH = "${pkgs.qt6.full}/lib/qt-6/qml";
# =========================================================================================
# Define shell environment
# =========================================================================================

View File

@ -703,7 +703,7 @@ in {
lua = ["luacheck"];
markdown = ["vale"];
nix = ["statix"];
python = ["ruff" "flake8" "pylint"];
python = ["ruff" "flake8"]; # TODO: "pylint" can't resolve some imports (e.g. PySide6.QtGui)
tex = ["chktex"];
# rust = ["clippy"]; # Not supported, but integrated through rustaceanvim
text = ["vale"];
@ -830,7 +830,13 @@ in {
};
};
}
{name = "qmlls";}
{
name = "qmlls";
extraOptions.cmd = [
"qmlls"
"-E" # Use QML_IMPORT_PATH env variable
];
}
{name = "svelte";}
{name = "tailwindcss";}
{name = "texlab";}