-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move configs into .config and local configs into .local
- bash - Brewfile - inputrc - tmux
- Loading branch information
Showing
19 changed files
with
44 additions
and
40 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
if command -v brew >/dev/null 2>&1 && [ -f "$(brew --prefix)/etc/profile.d/bash_completion.sh" ]; then | ||
source "$(brew --prefix)/etc/profile.d/bash_completion.sh" | ||
fi | ||
|
||
# Git completion for aliases | ||
if command -v __git_complete > /dev/null 2>&1; then | ||
__git_complete config __git_main | ||
__git_complete g __git_main | ||
__git_complete ga _git_add | ||
__git_complete gb _git_branch | ||
__git_complete gco _git_checkout | ||
__git_complete gcob _git_checkout | ||
__git_complete gd _git_diff | ||
__git_complete gf _git_fetch | ||
__git_complete gl _git_log | ||
__git_complete gm _git_merge | ||
__git_complete gpu _git_push | ||
__git_complete gpuf _git_push | ||
__git_complete gpd _git_pull | ||
__git_complete gr _git_rebase | ||
__git_complete gs _git_status | ||
fi | ||
|
||
if command -v direnv > /dev/null 2>&1; then | ||
eval "$(direnv hook bash)" | ||
fi | ||
|
||
for file in ${HOME}/.{bash_prompt,aliases,exports,functions,bash_profile.local}; do | ||
for file in "${HOME}"/.{config,local}/bash/*; do | ||
if [ -f "${file}" ]; then | ||
source "${file}" | ||
fi | ||
done | ||
|
||
if [ -z "${TMUX}" ] && command -v neofetch > /dev/null 2>&1; then | ||
neofetch | ||
fi |
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
File renamed without changes.
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env bash | ||
|
||
if command -v brew >/dev/null 2>&1 && [ -f "$(brew --prefix)/etc/profile.d/bash_completion.sh" ]; then | ||
source "$(brew --prefix)/etc/profile.d/bash_completion.sh" | ||
fi | ||
|
||
# Git completion for aliases | ||
if command -v __git_complete > /dev/null 2>&1; then | ||
__git_complete config __git_main | ||
__git_complete g __git_main | ||
__git_complete ga _git_add | ||
__git_complete gb _git_branch | ||
__git_complete gco _git_checkout | ||
__git_complete gcob _git_checkout | ||
__git_complete gd _git_diff | ||
__git_complete gf _git_fetch | ||
__git_complete gl _git_log | ||
__git_complete gm _git_merge | ||
__git_complete gpu _git_push | ||
__git_complete gpuf _git_push | ||
__git_complete gpd _git_pull | ||
__git_complete gr _git_rebase | ||
__git_complete gs _git_status | ||
fi | ||
|
||
if command -v direnv > /dev/null 2>&1; then | ||
eval "$(direnv hook bash)" | ||
fi | ||
|
||
if [ -z "${TMUX}" ] && command -v neofetch > /dev/null 2>&1; then | ||
neofetch | ||
fi |
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
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../../../../../themes/onehalf/vim | ||
../../../../../.themes/onehalf/vim |
File renamed without changes.
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
Empty file.
File renamed without changes
Submodule onehalf
updated
from 000000 to 7686b7
File renamed without changes
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
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
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