-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
118 additions
and
3 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,18 @@ | ||
# ++++++++++++++++++++++ | ||
# + Base Configuration + | ||
# ++++++++++++++++++++++ | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 160 | ||
trim_trailing_whitespace = true | ||
|
||
# +++++++++++++ | ||
# + Languages + | ||
# +++++++++++++ | ||
# +++ Markdown +++ | ||
[*.{md,gfm}] | ||
trim_trailing_whitespace = false |
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
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.1.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 |
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,58 @@ | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Nord tmux + | ||
# project nord-tmux + | ||
# version 0.1.0 + | ||
# repository https://github.com/arcticicestudio/nord-tmux + | ||
# author Arctic Ice Studio + | ||
# email [email protected] + | ||
# copyright Copyright (C) 2017 + | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
#+---------+ | ||
#+ Options + | ||
#+---------+ | ||
set -g status-interval 1 | ||
set -g status on | ||
|
||
#+--------+ | ||
#+ Status + | ||
#+--------+ | ||
#+--- Layout ---+ | ||
set -g status-position bottom | ||
set -g status-justify left | ||
|
||
#+--- Colors ---+ | ||
set -g status-bg black | ||
set -g status-fg white | ||
set -g status-attr none | ||
|
||
#+--- Bars ---+ | ||
set -g status-left "#[fg=black,bg=blue,bold] #S#[fg=blue,bg=black,nobold,noitalics,nounderscore]" | ||
set -g status-right "#[fg=brightblack,bg=black,nobold,noitalics,nounderscore]#[fg=white,bg=brightblack] %Y-%m-%d #[fg=white,bg=brightblack,nobold,noitalics,nounderscore]#[fg=white,bg=brightblack] %H:%M #[fg=cyan,bg=brightblack,nobold,noitalics,nounderscore]#[fg=black,bg=cyan,bold] #H" | ||
|
||
#+--- Windows ---+ | ||
set -g window-status-format "#[fg=black,bg=brightblack,nobold,noitalics,nounderscore] #[fg=white,bg=brightblack]#I #[fg=white,bg=brightblack,nobold,noitalics,nounderscore] #[fg=white,bg=brightblack]#W #F #[fg=brightblack,bg=black,nobold,noitalics,nounderscore]" | ||
set -g window-status-current-format "#[fg=black,bg=cyan,nobold,noitalics,nounderscore] #[fg=black,bg=cyan]#I #[fg=black,bg=cyan,nobold,noitalics,nounderscore] #[fg=black,bg=cyan]#W #F #[fg=cyan,bg=black,nobold,noitalics,nounderscore]" | ||
set -g window-status-separator "" | ||
|
||
#+-------+ | ||
#+ Panes + | ||
#+-------+ | ||
set -g pane-border-bg black | ||
set -g pane-border-fg black | ||
set -g pane-active-border-bg black | ||
set -g pane-active-border-fg brightblack | ||
set -g display-panes-colour black | ||
set -g display-panes-active-colour brightblack | ||
|
||
#+------------+ | ||
#+ Clock Mode + | ||
#+------------+ | ||
setw -g clock-mode-colour cyan | ||
|
||
#+----------+ | ||
#+ Messages + | ||
#+---------+ | ||
set -g message-fg cyan | ||
set -g message-bg brightblack | ||
set -g message-command-fg cyan | ||
set -g message-command-bg brightblack |