This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| { | |
| "lopesivan/adb-bridge", | |
| cmd = { | |
| "AdbShell", | |
| "AdbDevices", | |
| "AdbDevicesL", | |
| "AdbState", | |
| "AdbRoot", | |
| "AdbRemount", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| { | |
| "lopesivan/adb-bridge", | |
| cmd = { | |
| "AdbShell", | |
| "AdbDevices", | |
| "AdbDevicesL", | |
| "AdbState", | |
| "AdbRoot", | |
| "AdbRemount", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| set -u | |
| set -o pipefail | |
| NVIM_CONFIG_NAME=nvim-pde | |
| _d=/tmp/neovim | |
| test -d "$_d" || mkdir -p "$_d" | |
| REAL_NVIM=/home/linuxbrew/.linuxbrew/bin/nvim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| set -u | |
| set -o pipefail | |
| NVIM_CONFIG_NAME=nvim-pde | |
| _d=/tmp/neovim | |
| test -d "$_d" || mkdir -p "$_d" | |
| REAL_NVIM=/home/linuxbrew/.linuxbrew/bin/nvim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Diretórios base | |
| NVIM_CONFIG_DIR = /home/ivan/.config/nvim-pde-local | |
| LAZY_DIR = $(NVIM_CONFIG_DIR)/lazy | |
| # Diretórios de destino específicos | |
| NONE_LS_DIR = $(LAZY_DIR)/none-ls.nvim/lua/null-ls/builtins/formatting | |
| TODO_COMMENTS_DIR = $(LAZY_DIR)/todo-comments.nvim/lua/todo-comments | |
| SNIPPETS_DIR = $(LAZY_DIR)/friendly-snippets/snippets/c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ANDROID_PLATFORM=android-19 | |
| ANDROID_HOME=/home/ivan/Android/api/16/android-sdk-linux | |
| PATH={PATH}:{ANDROID_HOME}/tools:{ANDROID_HOME}/platform-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| adb-git.py — gerencia repositórios git em /sdcard/git via ADB (USB) | |
| uso: | |
| ./adb-git.py clone | |
| ./adb-git.py push <repo-local> [dest.git] | |
| ./adb-git.py pull <repo-local> | |
| ./adb-git.py ls | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| exec bash --rcfile /home/ivan/.bashrc.without-brew |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~.config/i3/config | |
| ## Use xprop para identificar as classes dos aplicativos | |
| for_window [class="^.*"] border pixel 3 | |
| gaps inner 10 | |
| gaps outer 10 | |
| smart_gaps on | |
| smart_borders on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Tearing down workspace ..." | |
| if [ -f /tmp/workspace-activated ]; then | |
| rm /tmp/workspace-activated | |
| dirs=(CLionProjects | |
| IdeaProjects | |
| PhpstormProjects | |
| PycharmProjects | |
| RiderProjects |
NewerOlder