-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/ghi-#2-tmux-plugin-manager-support' into develop
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Nord tmux TPM Loader + | ||
# project nord-tmux + | ||
# repository https://github.com/arcticicestudio/nord-tmux + | ||
# author Arctic Ice Studio + | ||
# email [email protected] + | ||
# copyright Copyright (C) 2017 + | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# | ||
# [References] | ||
# Nord | ||
# https://github.com/arcticicestudio/nord | ||
# tmux | ||
# https://tmux.github.io | ||
NORD_TMUX_COLOR_THEME_FILE=src/nord.conf | ||
NORD_TMUX_VERSION=0.0.0 | ||
_current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
__cleanup() { | ||
unset -v NORD_TMUX_COLOR_THEME_FILE NORD_TMUX_VERSION | ||
unset -v _current_dir | ||
unset -f __load __cleanup | ||
} | ||
|
||
__load() { | ||
tmux source-file "$_current_dir/$NORD_TMUX_COLOR_THEME_FILE" | ||
} | ||
|
||
__load | ||
__cleanup |