diff --git a/nord.tmux b/nord.tmux new file mode 100644 index 0000000..fa077e4 --- /dev/null +++ b/nord.tmux @@ -0,0 +1,30 @@ +# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +# title Nord tmux TPM Loader + +# project nord-tmux + +# repository https://github.com/arcticicestudio/nord-tmux + +# author Arctic Ice Studio + +# email development@arcticicestudio.com + +# 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