add input-leap

This commit is contained in:
tristan 2023-05-17 09:21:27 +01:00
parent 9ce692cb5f
commit a4e239898c
2 changed files with 65 additions and 1 deletions

View file

@ -20,6 +20,7 @@ let
gawk = "${pkgs.gawk}/bin/awk";
};
lf-sixel = pkgs.callPackage ../../custom/lf-sixel/. { };
input-leap = pkgs.callPackage ../../custom/input-leap/. { };
in
{
programs.home-manager.enable = true;
@ -38,10 +39,12 @@ in
imv
libsixel
lf-sixel
input-leap
yt-dlp
playerctl
swww
neofetch
obs-studio
inkscape
libsForQt5.okular
@ -519,7 +522,7 @@ in
};
}
{
name = "typescript";
name = "tsx";
auto-format = true;
language-server = {
command = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server";
@ -867,6 +870,10 @@ color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-
command = "${pkgs.rnix-lsp}/bin/rnix-lsp";
filetypes = [ "nix" ];
};
typescript = {
command = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server";
filetypes = [ "ts" "tsx" ];
};
};
};
};