This file contains 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
# Description: Exec into the container using bash | |
# Usage: dockerexec <docker_container_name> | |
dockerexec() { | |
docker exec -it $1 bash | |
} | |
# Description: Show current docker containers names ONLY | |
# Usage: dockerps | |
alias dockerps="docker ps --format \"{{.ID}} {{.Names}}\"" |
This file contains 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
setlocal softtabstop=2 | |
setlocal tabstop=2 | |
setlocal shiftwidth=2 |
This file contains 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/mgjo5899/.oh-my-zsh" | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="theunraveler" |
This file contains 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
# Ubuntu 18.04 Media Key + Volume Key setup | |
- Go to Settings -> Devices -> Keyboard | |
- Go to "Sound and Media" category | |
- Set personalized shortcuts by clicking ones you would like to configure |
This file contains 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
# Comment | |
PROMPT='%{$fg[magenta]%}[%c] %{$reset_color%}' | |
RPROMPT='%{$fg[magenta]%}$(git_prompt_info)%{$reset_color%} $(git_prompt_status)%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
This file contains 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
" Dracula Theme v1.2.6 | |
" | |
" https://github.com/zenorocha/dracula-theme | |
" | |
" Copyright 2016, All rights reserved | |
" | |
" Code licensed under the MIT license | |
" http://zenorocha.mit-license.org | |
" | |
" @author Trevor Heins <@heinst> |
This file contains 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
colorscheme dracula | |
set noshowmatch " Disable highlighting matching bracket | |
set nohlsearch " Disable highlighting in search | |
set number " Show line numbers | |
set textwidth=0 " Hard-wrap long lines as you type them. | |
set expandtab " Insert spaces when TAB is pressed. | |
set tabstop=4 " Render TABs using this many spaces. | |
set shiftwidth=4 " Indentation amount for < and > commands. | |
set nosmartindent " Keep starting indentation for commenting |
This file contains 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
#remap c-b to c-a | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
### LOOK & FEEL ### | |
set -g default-terminal "xterm-256color" | |
# default statusbar colors | |
set -g status-style bg=colour235,default,fg=colour179,default | |
# default window title colors | |
set -g window-status-style fg=colour244 |