From dbb8e51aa733d136ca5259c3151b4672827ca08f Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 14 Oct 2019 22:24:25 +0200 Subject: [PATCH 1/5] =?UTF-8?q?M=C3=A0J=20README:=20nouvelle=20application?= =?UTF-8?q?=20dino?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8469da7..2388b90 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ D'autres viendront au fur et à mesure. Sont nécessaires : * colordiff + * dino (pour XMPP) avec noto-fonts-emoji * dunst * elinks * exa From da32cc9692d32bbab8bfe9ff5f508e3d95f72699 Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 14 Oct 2019 22:26:35 +0200 Subject: [PATCH 2/5] README: correction des commandes Git --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2388b90..8b56d72 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ La première fois ça donne : git init --bare $HOME/.dotfiles alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' dotfiles config --local status.showUntrackedFiles no +dotfiles remote add origin gitea@forge.o9.re:olivier/dotfiles.git +dotfiles push origin master ``` et on utilise la commande `dotfiles` (inclure dans .zshrc) pour ajouter des fichiers : @@ -20,7 +22,7 @@ dotfiles add .zshrc Les autres fois : ```bash -git clone --bare https://github.com/USERNAME/dotfiles.git $HOME/.dotfiles +git clone --bare gitea@forge.o9.re:olivier/dotfiles.git $HOME/.dotfiles alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' dotfiles checkout source ~/.zshrc From a66889f5bc07c754bf402fda2d226051617a304a Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 14 Oct 2019 22:32:54 +0200 Subject: [PATCH 3/5] =?UTF-8?q?ZSH:=20d=C3=A9placement=20de=20code=20pour?= =?UTF-8?q?=20le=20d=C3=A9marrage=20de=20la=20session=20graphique?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zprofile | 5 +++++ .zshrc | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.zprofile b/.zprofile index 322d2ce..602fa41 100644 --- a/.zprofile +++ b/.zprofile @@ -1 +1,6 @@ emulate sh -c '. ~/.profile' + +# Start X automatically +if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then + exec startx +fi diff --git a/.zshrc b/.zshrc index 3f1f992..80c4c91 100644 --- a/.zshrc +++ b/.zshrc @@ -159,11 +159,6 @@ if [ ! $SSH_AGENT_PID ]; then fi; fi; -# Start X automatically -if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then - exec startx -fi - # Launch nvm possibilities (for javascript environment) case $HOST in lueur | baloo | sam) From 55f5fd7246feafd1fc352c6a4b512394fe79cd6a Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Wed, 16 Oct 2019 14:29:06 +0200 Subject: [PATCH 4/5] Version de nvm --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..d191598 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +10.16.3 From 5dd48e1e4759e43f9f2068eda0c0ae6922b158fa Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Thu, 17 Oct 2019 16:54:44 +0200 Subject: [PATCH 5/5] ZSH: ajout du plugin ng pour Angular --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index cb51680..4659ea0 100644 --- a/.zshrc +++ b/.zshrc @@ -68,7 +68,7 @@ ZSH_THEME="powerlevel10k/powerlevel10k" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git httpie nvm npm pass pip pyenv sudo virtualenvwrapper wd) +plugins=(git httpie ng npm nvm pass pip pyenv sudo virtualenvwrapper wd) source $ZSH/oh-my-zsh.sh