Skip to content

Instantly share code, notes, and snippets.

@devdrops
Last active November 10, 2021 16:56
Show Gist options
  • Save devdrops/1ba31a96eb31e63ea8514a4d93813cb8 to your computer and use it in GitHub Desktop.
Save devdrops/1ba31a96eb31e63ea8514a4d93813cb8 to your computer and use it in GitHub Desktop.

Revisions

  1. devdrops revised this gist May 31, 2019. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    # tmuxinator

    - Config sample (en_US)
    - Exemplo de configuração (pt_BR)
  2. devdrops revised this gist May 31, 2019. 1 changed file with 0 additions and 4 deletions.
    4 changes: 0 additions & 4 deletions sample-pt_BR.yml
    Original file line number Diff line number Diff line change
    @@ -14,14 +14,10 @@ startup_window: VIM
    # Abaixo temos 3 janelas:
    # - A primeira, chamada `VIM`, abre o editor.
    # - A segunda, chamada `ENV`, é dedicada para o ambiente local - neste caso, um ambiente baseado em Docker.
    # - The third one, named `GIT`, is dedicated to VCS. Here we have 3 panes:
    # - A terceira, chamada `GIT`, é dedicada para o controle de versão. Aqui temos 3 painéis:
    # - The top pane, named `CURRENT_STATUS`, will display the current status of your work.
    # - O painel do topo, chamado `CURRENT_STATUS`, vai exibir o estado atual do seu trabalho.
    # - The bottom pane, named `FILES_AND_TIME`, is splitted in two other panes:
    # - O painel de baixo, chamado `FILES_AND_TIME`, é dividido em dois outros painéis:
    # - O painel da esquerda executa um comando do Git para exibir o que já foi feito no seu trabalho atual, com uma lista somente dos arquivos modificados e adicionados, comparando o branch local contra o branch master do repositório remoto.
    # - And the bottom-right pane will display the current time, just because I'm too lazy to look at the OS toolbar (mine is always hidden) or the cellphone (avoiding distractions!)
    # - E o painel da direita exibe a hora atual, só porque eu sou preguiçoso demais pra olhar para o relógio do sistema (sempre deixo a barra do SO oculta) ou no celular (assim evito distrações!)
    # Perceba que todos esses painéis são criados usando alguns comandos do tmux, dividindo, aumentando e executando comandos no terminal. Bacana né?
    windows:
  3. devdrops revised this gist May 30, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion sample-pt_BR.yml
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    # /home/davi-moreira/.config/tmuxinator/sample.yml

    # COmentários em pt_BR
    # Comentários em pt_BR

    name: sample
    root: ~/Projects/etc/sample
  4. devdrops revised this gist May 30, 2019. 2 changed files with 42 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion sample.yml → sample-en_US.yml
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,7 @@
    # /home/davi-moreira/.config/tmuxinator/sample.yml

    # Comments in en_US

    name: sample
    root: ~/Projects/etc/sample

    @@ -17,7 +19,7 @@ startup_window: VIM
    # - The bottom pane, named `FILES_AND_TIME`, is splitted in two other panes:
    # - The bottom-left pane runs a Git command to display what's been added to your current work, with a list of only added and modified files, comparing the local branch against the remote's origin master branch.
    # - And the bottom-right pane will display the current time, just because I'm too lazy to look at the OS toolbar (mine is always hidden) or the cellphone (avoiding distractions!)
    # Notice that all these panes are created using a few tmux commands, by splitting, resizing and executing commands. Pretty nice, eh?
    # Notice that all these panes are created using a few tmux commands, by splitting, resizing and executing commands in your terminal. Pretty nice, eh?
    windows:
    - VIM: vim .
    - ENV: docker-compose ps
    39 changes: 39 additions & 0 deletions sample-pt_BR.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    # /home/davi-moreira/.config/tmuxinator/sample.yml

    # COmentários em pt_BR

    name: sample
    root: ~/Projects/etc/sample

    # Isto vai manter o seu repositório local sempre atualizado com as referências do que está remoto.
    on_project_start: git fetch --all

    # Aqui dizemos para o tmuxinator qual é a janela principal.
    startup_window: VIM

    # Abaixo temos 3 janelas:
    # - A primeira, chamada `VIM`, abre o editor.
    # - A segunda, chamada `ENV`, é dedicada para o ambiente local - neste caso, um ambiente baseado em Docker.
    # - The third one, named `GIT`, is dedicated to VCS. Here we have 3 panes:
    # - A terceira, chamada `GIT`, é dedicada para o controle de versão. Aqui temos 3 painéis:
    # - The top pane, named `CURRENT_STATUS`, will display the current status of your work.
    # - O painel do topo, chamado `CURRENT_STATUS`, vai exibir o estado atual do seu trabalho.
    # - The bottom pane, named `FILES_AND_TIME`, is splitted in two other panes:
    # - O painel de baixo, chamado `FILES_AND_TIME`, é dividido em dois outros painéis:
    # - O painel da esquerda executa um comando do Git para exibir o que já foi feito no seu trabalho atual, com uma lista somente dos arquivos modificados e adicionados, comparando o branch local contra o branch master do repositório remoto.
    # - And the bottom-right pane will display the current time, just because I'm too lazy to look at the OS toolbar (mine is always hidden) or the cellphone (avoiding distractions!)
    # - E o painel da direita exibe a hora atual, só porque eu sou preguiçoso demais pra olhar para o relógio do sistema (sempre deixo a barra do SO oculta) ou no celular (assim evito distrações!)
    # Perceba que todos esses painéis são criados usando alguns comandos do tmux, dividindo, aumentando e executando comandos no terminal. Bacana né?
    windows:
    - VIM: vim .
    - ENV: docker-compose ps
    - GIT:
    layout: main-horizontal
    panes:
    - CURRENT_STATUS:
    - git status
    - FILES_AND_TIME:
    - tmux split-window -t 2.1 -h
    - tmux resize-pane -t 2.1 -R 40
    - tmux clock-mode -t 2.2
    - tmux send-keys -t 2.1 "git diff origin/master...`git rev-parse --abbrev-ref HEAD` --name-only --diff-filter=AM" Enter
  5. devdrops revised this gist May 30, 2019. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions sample.yml
    Original file line number Diff line number Diff line change
    @@ -10,9 +10,9 @@ on_project_start: git fetch --all
    startup_window: VIM

    # Below we have only 3 windows:
    # - The first one opens the editor.
    # - The second one is dedicated to the local environment - in this case, a Docker-based environment.
    # - The third one is dedicated to VCS. Here we have 3 panes:
    # - The first one, named `VIM`, opens the editor.
    # - The second one, named `ENV`, is dedicated to the local environment - in this case, a Docker-based environment.
    # - The third one, named `GIT`, is dedicated to VCS. Here we have 3 panes:
    # - The top pane, named `CURRENT_STATUS`, will display the current status of your work.
    # - The bottom pane, named `FILES_AND_TIME`, is splitted in two other panes:
    # - The bottom-left pane runs a Git command to display what's been added to your current work, with a list of only added and modified files, comparing the local branch against the remote's origin master branch.
  6. devdrops revised this gist May 30, 2019. 1 changed file with 11 additions and 0 deletions.
    11 changes: 11 additions & 0 deletions sample.yml
    Original file line number Diff line number Diff line change
    @@ -3,10 +3,21 @@
    name: sample
    root: ~/Projects/etc/sample

    # This will keep your local clone/fork always up-to-date with the remote repository.
    on_project_start: git fetch --all

    # Telling tmuxinator which is the main window.
    startup_window: VIM

    # Below we have only 3 windows:
    # - The first one opens the editor.
    # - The second one is dedicated to the local environment - in this case, a Docker-based environment.
    # - The third one is dedicated to VCS. Here we have 3 panes:
    # - The top pane, named `CURRENT_STATUS`, will display the current status of your work.
    # - The bottom pane, named `FILES_AND_TIME`, is splitted in two other panes:
    # - The bottom-left pane runs a Git command to display what's been added to your current work, with a list of only added and modified files, comparing the local branch against the remote's origin master branch.
    # - And the bottom-right pane will display the current time, just because I'm too lazy to look at the OS toolbar (mine is always hidden) or the cellphone (avoiding distractions!)
    # Notice that all these panes are created using a few tmux commands, by splitting, resizing and executing commands. Pretty nice, eh?
    windows:
    - VIM: vim .
    - ENV: docker-compose ps
  7. devdrops created this gist May 30, 2019.
    22 changes: 22 additions & 0 deletions sample.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    # /home/davi-moreira/.config/tmuxinator/sample.yml

    name: sample
    root: ~/Projects/etc/sample

    on_project_start: git fetch --all

    startup_window: VIM

    windows:
    - VIM: vim .
    - ENV: docker-compose ps
    - GIT:
    layout: main-horizontal
    panes:
    - CURRENT_STATUS:
    - git status
    - FILES_AND_TIME:
    - tmux split-window -t 2.1 -h
    - tmux resize-pane -t 2.1 -R 40
    - tmux clock-mode -t 2.2
    - tmux send-keys -t 2.1 "git diff origin/master...`git rev-parse --abbrev-ref HEAD` --name-only --diff-filter=AM" Enter