Compare commits
2 Commits
a1525be05a
...
b033f64e7f
Author | SHA1 | Date |
---|---|---|
Alexandre LUCAZEAU | b033f64e7f | |
Alexandre LUCAZEAU | d78f9fdf35 |
|
@ -2,7 +2,6 @@
|
|||
imports = [
|
||||
./packages.nix
|
||||
./gnupg.nix
|
||||
./git.nix
|
||||
./variables.nix
|
||||
./starship.nix
|
||||
./i3status.nix
|
||||
|
@ -10,11 +9,11 @@
|
|||
./mails.nix
|
||||
./dunst.nix
|
||||
./bat.nix
|
||||
# ./kdeconnect.nix
|
||||
# ./redshift.nix
|
||||
# ../../../modules/neovim.nix
|
||||
../../../modules/rust.nix
|
||||
../../../modules/tmux.nix
|
||||
../../../modules/git.nix
|
||||
];
|
||||
home.keyboard = {
|
||||
layout = "fr";
|
||||
|
|
|
@ -6,6 +6,32 @@
|
|||
userName = "Alexandre LUCAZEAU";
|
||||
aliases = {
|
||||
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 = {
|
||||
"color" = {
|
Loading…
Reference in New Issue