add git aliases, remove redundant line in catppuccin-discord
This commit is contained in:
parent
7c4e07af40
commit
02a3d5ae44
3 changed files with 7 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
}: let
|
}: let
|
||||||
mergedConfig = pkgs.runCommand "mergedConfig" {} ''
|
mergedConfig = pkgs.runCommand "mergedConfig" {} ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
${pkgs.gnused}/bin/sed 's/#1e1e2e/#000000/g' \
|
${pkgs.gnused}/bin/sed 's/${pkgs.catppuccin.${config.catppuccin.flavor}.base}/#000000/g' \
|
||||||
${pkgs.catppuccin-mpv-git}/themes/${config.catppuccin.flavor}/${config.catppuccin.accent}.conf \
|
${pkgs.catppuccin-mpv-git}/themes/${config.catppuccin.flavor}/${config.catppuccin.accent}.conf \
|
||||||
> $out/mpv.conf
|
> $out/mpv.conf
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,12 @@
|
||||||
ssh = "kitty-ssh";
|
ssh = "kitty-ssh";
|
||||||
cat = "bat";
|
cat = "bat";
|
||||||
ls = "eza";
|
ls = "eza";
|
||||||
|
gl = "git log";
|
||||||
|
ga = "git add -v .";
|
||||||
|
gac = "git add -v . && git commit";
|
||||||
|
gaca = "git add -v . && git commit --amend --no-edit";
|
||||||
|
gp = "git push";
|
||||||
|
gpf = "git push --force";
|
||||||
};
|
};
|
||||||
functions = {
|
functions = {
|
||||||
fish_prompt = {
|
fish_prompt = {
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
yarn --offline build
|
|
||||||
yarn --offline release
|
yarn --offline release
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue