phaalonso / dotfiles

Dotfiles from my linux setup.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotfiles

Terminal with termux Screenshot 001

Install in a new system

Antes de começar garanta que o alias esteja presente no .bashrc or .zsh:

alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'

Adicione o repositório no .gitignore para evitar problemas estranhos de recursao:

echo ".cfg" >> .gitignore

Faça o clone do seu dotfiles em um repositório bare:

git clone --bare git@github.com:phaalonso/dotfiles.git $HOME/.cfg

Configure o alias no shell atual:

alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'

Realize checkout pro conteudo do seu repositório para o $HOME:

config checkout

Durante esse processo, pode ocorrer conflitos de arquivos. Nesse caso voce pode apagar manualemente, ou executar o seguinte script que ira mover tudo pra uma pasta de backup:

mkdir -p .config-backup && \
config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
xargs -I{} mv {} .config-backup/{}

Entao rode o checkout novamente

config checkout

Configure a flag para nao mostrar arquivos que nao estao no controle de versao:

config config --local status.showUntrackedFiles no

Exemplos:

config status
config add .vimrc
config commit -m "Add vimrc"
config add .bashrc
config commit -m "Add bashrc"
config push

Again as a shortcut not to have to remember all these steps on any new machine you want to setup, you can create a simple script, store it as Bitbucket snippet like I did, create a short url for it and call it like this:

git clone --bare git@github.com:phaalonso/dotfiles.git $HOME/.cfg
function config {
   /usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
}
mkdir -p .config-backup
config checkout
if [ $? = 0 ]; then
  echo "Checked out config.";
  else
    echo "Backing up pre-existing dot files.";
    config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
fi;
config checkout
config config status.showUntrackedFiles no

Hyperland config baseada em JaKooLit

About

Dotfiles from my linux setup.


Languages

Language:Shell 60.7%Language:Lua 18.1%Language:CSS 13.5%Language:Scheme 3.4%Language:Python 2.8%Language:GLSL 1.4%Language:Vim Script 0.0%