Skip to content

Commit

Permalink
fix: update wakatime-ls
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Nov 21, 2024
1 parent 15aab1f commit 300bbfa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
radicle.url = "git+https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5";
radicle.inputs.nixpkgs.follows = "nixpkgs";

wakatime-lsp.url = "github:mrnossiom/wakatime-lsp";
wakatime-lsp.inputs.nixpkgs.follows = "nixpkgs";
wakatime-ls.url = "github:mrnossiom/wakatime-ls";
wakatime-ls.inputs.nixpkgs.follows = "nixpkgs";
};

outputs = { self, nixpkgs, ... }:
Expand Down
6 changes: 3 additions & 3 deletions home-manager/fragments/helix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@ in
upkgs.vue-language-server
yaml-language-server
] ++ lib.optionals (!flags.onlyCached) [
lpkgs.wakatime-lsp
lpkgs.wakatime-ls
];

languages = {
language-server = {
rust-analyzer.config = { check.command = "clippy"; };

ltex-ls.command = "ltex-ls";
wakatime-lsp.command = "wakatime-lsp";
wakatime-ls.command = "wakatime-ls";
};

language =
let global-lsps = [ "wakatime-lsp" ]; in
let global-lsps = [ "wakatime-ls" ]; in
[
{ name = "c"; language-servers = [ "clangd" ] ++ global-lsps; auto-format = true; formatter = { command = lib.getExe' pkgs.clang-tools "clang-format"; args = [ ]; }; }
{ name = "html"; language-servers = [ "vscode-html-language-server" ] ++ global-lsps; }
Expand Down
4 changes: 2 additions & 2 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ self, system, ... }@pkgs:

let
inherit (self.inputs) agenix git-leave helix radicle wakatime-lsp;
inherit (self.inputs) agenix git-leave helix radicle wakatime-ls;
in
{
asak = pkgs.callPackage ./asak.nix { };
Expand All @@ -17,5 +17,5 @@ in
inherit (git-leave.packages.${system}) git-leave;
inherit (helix.packages.${system}) helix;
inherit (radicle.packages.${system}) radicle;
inherit (wakatime-lsp.packages.${system}) wakatime-lsp;
inherit (wakatime-ls.packages.${system}) wakatime-ls;
}

0 comments on commit 300bbfa

Please sign in to comment.