Compare commits
2 Commits
a1525be05a
...
b033f64e7f
Author | SHA1 | Date |
---|---|---|
Alexandre LUCAZEAU | b033f64e7f | |
Alexandre LUCAZEAU | d78f9fdf35 |
|
@ -2,7 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./gnupg.nix
|
./gnupg.nix
|
||||||
./git.nix
|
|
||||||
./variables.nix
|
./variables.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./i3status.nix
|
./i3status.nix
|
||||||
|
@ -10,11 +9,11 @@
|
||||||
./mails.nix
|
./mails.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
# ./kdeconnect.nix
|
|
||||||
# ./redshift.nix
|
# ./redshift.nix
|
||||||
# ../../../modules/neovim.nix
|
# ../../../modules/neovim.nix
|
||||||
../../../modules/rust.nix
|
../../../modules/rust.nix
|
||||||
../../../modules/tmux.nix
|
../../../modules/tmux.nix
|
||||||
|
../../../modules/git.nix
|
||||||
];
|
];
|
||||||
home.keyboard = {
|
home.keyboard = {
|
||||||
layout = "fr";
|
layout = "fr";
|
||||||
|
|
|
@ -6,6 +6,32 @@
|
||||||
userName = "Alexandre LUCAZEAU";
|
userName = "Alexandre LUCAZEAU";
|
||||||
aliases = {
|
aliases = {
|
||||||
ignore = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi";
|
ignore = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi";
|
||||||
|
aa = "add --all";
|
||||||
|
b = "branch -v";
|
||||||
|
bd = "branch -d";
|
||||||
|
bD = "branch -D";
|
||||||
|
br = "branch";
|
||||||
|
ci = "commit";
|
||||||
|
cim = "commit -m";
|
||||||
|
cima = "commit -am";
|
||||||
|
clr = "rm -r --cached";
|
||||||
|
co = "checkout";
|
||||||
|
cp = "cherry-pick -x";
|
||||||
|
d = "diff -w";
|
||||||
|
dc = "diff --cached";
|
||||||
|
nb = "checkout -b";
|
||||||
|
oups = "commit --amend --no-edit";
|
||||||
|
r = "remote -v";
|
||||||
|
rh = "reset --hard";
|
||||||
|
st = "status -sb";
|
||||||
|
t = "tag -l";
|
||||||
|
unstage = "reset HEAD";
|
||||||
|
uncommit = "reset --soft HEAD^";
|
||||||
|
pushfl = "push --force-with-lease";
|
||||||
|
lg = "lg1";
|
||||||
|
lg1 = "lg1-specific --all";
|
||||||
|
lg2 = "lg2-specific --all";
|
||||||
|
lg3 = "lg3-specific --all";
|
||||||
};
|
};
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
"color" = {
|
"color" = {
|
Loading…
Reference in New Issue