├── .editorconfig ├── src ├── nord-status-content-no-patched-font.conf ├── nord.conf └── nord-status-content.conf ├── LICENSE.md ├── nord.tmux ├── CHANGELOG.md └── README.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017-present Arctic Ice Studio 2 | # Copyright (C) 2017-present Sven Greb 3 | 4 | # Project: Nord tmux 5 | # Repository: https://github.com/arcticicestudio/nord-tmux 6 | # License: MIT 7 | 8 | # ++++++++++++++++++++++ 9 | # + Base Configuration + 10 | # ++++++++++++++++++++++ 11 | [*] 12 | charset = utf-8 13 | end_of_line = lf 14 | indent_size = 2 15 | indent_style = space 16 | insert_final_newline = true 17 | max_line_length = 120 18 | trim_trailing_whitespace = true 19 | 20 | # +++++++++++++ 21 | # + Languages + 22 | # +++++++++++++ 23 | # +++ Markdown +++ 24 | [*.{md,gfm}] 25 | trim_trailing_whitespace = false 26 | -------------------------------------------------------------------------------- /src/nord-status-content-no-patched-font.conf: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017-present Arctic Ice Studio 2 | # Copyright (C) 2017-present Sven Greb 3 | 4 | # Project: Nord tmux 5 | # Repository: https://github.com/arcticicestudio/nord-tmux 6 | # License: MIT 7 | 8 | #+----------------+ 9 | #+ Plugin Support + 10 | #+----------------+ 11 | #+--- tmux-prefix-highlight ---+ 12 | set -g @prefix_highlight_copy_mode_attr "fg=black,bg=brightcyan" 13 | 14 | #+--------+ 15 | #+ Status + 16 | #+--------+ 17 | #+--- Bars ---+ 18 | set -g status-left "#[fg=black,bg=blue,bold] #S " 19 | set -g status-right "#{prefix_highlight}#[fg=white,bg=brightblack] ${NORD_TMUX_STATUS_DATE_FORMAT} #[fg=white,bg=brightblack,nobold,noitalics,nounderscore]|#[fg=white,bg=brightblack] ${NORD_TMUX_STATUS_TIME_FORMAT} #[fg=cyan,bg=brightblack,nobold,noitalics,nounderscore] #[fg=black,bg=cyan,bold] #H " 20 | 21 | #+--- Windows ---+ 22 | set -g window-status-format " #[fg=white,bg=brightblack]#I #[fg=white,bg=brightblack]#W #F" 23 | set -g window-status-current-format " #[fg=black,bg=cyan]#I#[fg=black,bg=cyan,nobold,noitalics,nounderscore] #[fg=black,bg=cyan]#W #F" 24 | set -g window-status-separator "" 25 | -------------------------------------------------------------------------------- /src/nord.conf: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017-present Arctic Ice Studio 2 | # Copyright (C) 2017-present Sven Greb 3 | 4 | # Project: Nord tmux 5 | # Repository: https://github.com/arcticicestudio/nord-tmux 6 | # License: MIT 7 | 8 | #+----------------+ 9 | #+ Plugin Support + 10 | #+----------------+ 11 | #+--- tmux-prefix-highlight ---+ 12 | set -g @prefix_highlight_fg black 13 | set -g @prefix_highlight_bg brightcyan 14 | 15 | #+---------+ 16 | #+ Options + 17 | #+---------+ 18 | set -g status-interval 1 19 | set -g status on 20 | 21 | #+--------+ 22 | #+ Status + 23 | #+--------+ 24 | #+--- Layout ---+ 25 | set -g status-justify left 26 | 27 | #+--- Colors ---+ 28 | set -g status-style bg=black,fg=white 29 | 30 | #+-------+ 31 | #+ Panes + 32 | #+-------+ 33 | set -g pane-border-style bg=default,fg=brightblack 34 | set -g pane-active-border-style bg=default,fg=blue 35 | set -g display-panes-colour black 36 | set -g display-panes-active-colour brightblack 37 | 38 | #+------------+ 39 | #+ Clock Mode + 40 | #+------------+ 41 | setw -g clock-mode-colour cyan 42 | 43 | #+----------+ 44 | #+ Messages + 45 | #+---------+ 46 | set -g message-style bg=brightblack,fg=cyan 47 | set -g message-command-style bg=brightblack,fg=cyan 48 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License (MIT) 2 | 3 | Copyright (C) 2017-present Arctic Ice Studio (https://www.arcticicestudio.com) 4 | Copyright (C) 2017-present Sven Greb (https://www.svengreb.de) 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /src/nord-status-content.conf: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017-present Arctic Ice Studio 2 | # Copyright (C) 2017-present Sven Greb 3 | 4 | # Project: Nord tmux 5 | # Repository: https://github.com/arcticicestudio/nord-tmux 6 | # License: MIT 7 | 8 | #+----------------+ 9 | #+ Plugin Support + 10 | #+----------------+ 11 | #+--- tmux-prefix-highlight ---+ 12 | set -g @prefix_highlight_output_prefix "#[fg=brightcyan]#[bg=black]#[nobold]#[noitalics]#[nounderscore]#[bg=brightcyan]#[fg=black]" 13 | set -g @prefix_highlight_output_suffix "" 14 | set -g @prefix_highlight_copy_mode_attr "fg=brightcyan,bg=black,bold" 15 | 16 | #+--------+ 17 | #+ Status + 18 | #+--------+ 19 | #+--- Bars ---+ 20 | set -g status-left "#[fg=black,bg=blue,bold] #S #[fg=blue,bg=black,nobold,noitalics,nounderscore]" 21 | set -g status-right "#{prefix_highlight}#[fg=brightblack,bg=black,nobold,noitalics,nounderscore]#[fg=white,bg=brightblack] ${NORD_TMUX_STATUS_DATE_FORMAT} #[fg=white,bg=brightblack,nobold,noitalics,nounderscore]#[fg=white,bg=brightblack] ${NORD_TMUX_STATUS_TIME_FORMAT} #[fg=cyan,bg=brightblack,nobold,noitalics,nounderscore]#[fg=black,bg=cyan,bold] #H " 22 | 23 | #+--- Windows ---+ 24 | 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]" 25 | 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]" 26 | set -g window-status-separator "" 27 | -------------------------------------------------------------------------------- /nord.tmux: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Copyright (C) 2017-present Arctic Ice Studio 3 | # Copyright (C) 2017-present Sven Greb 4 | 5 | # Project: Nord tmux 6 | # Repository: https://github.com/arcticicestudio/nord-tmux 7 | # License: MIT 8 | # References: 9 | # https://tmux.github.io 10 | 11 | NORD_TMUX_COLOR_THEME_FILE=src/nord.conf 12 | NORD_TMUX_VERSION=0.3.0 13 | NORD_TMUX_STATUS_CONTENT_FILE="src/nord-status-content.conf" 14 | NORD_TMUX_STATUS_CONTENT_NO_PATCHED_FONT_FILE="src/nord-status-content-no-patched-font.conf" 15 | NORD_TMUX_STATUS_CONTENT_OPTION="@nord_tmux_show_status_content" 16 | NORD_TMUX_STATUS_CONTENT_DATE_FORMAT="@nord_tmux_date_format" 17 | NORD_TMUX_NO_PATCHED_FONT_OPTION="@nord_tmux_no_patched_font" 18 | _current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 19 | 20 | __cleanup() { 21 | unset -v NORD_TMUX_COLOR_THEME_FILE NORD_TMUX_VERSION 22 | unset -v NORD_TMUX_STATUS_CONTENT_FILE NORD_TMUX_STATUS_CONTENT_NO_PATCHED_FONT_FILE 23 | unset -v NORD_TMUX_STATUS_CONTENT_OPTION NORD_TMUX_NO_PATCHED_FONT_OPTION 24 | unset -v NORD_TMUX_STATUS_CONTENT_DATE_FORMAT 25 | unset -v _current_dir 26 | unset -f __load __cleanup 27 | tmux set-environment -gu NORD_TMUX_STATUS_TIME_FORMAT 28 | tmux set-environment -gu NORD_TMUX_STATUS_DATE_FORMAT 29 | } 30 | 31 | __load() { 32 | tmux source-file "$_current_dir/$NORD_TMUX_COLOR_THEME_FILE" 33 | 34 | local status_content=$(tmux show-option -gqv "$NORD_TMUX_STATUS_CONTENT_OPTION") 35 | local no_patched_font=$(tmux show-option -gqv "$NORD_TMUX_NO_PATCHED_FONT_OPTION") 36 | local date_format=$(tmux show-option -gqv "$NORD_TMUX_STATUS_CONTENT_DATE_FORMAT") 37 | 38 | if [ "$(tmux show-option -gqv "clock-mode-style")" == '12' ]; then 39 | tmux set-environment -g NORD_TMUX_STATUS_TIME_FORMAT "%I:%M %p" 40 | else 41 | tmux set-environment -g NORD_TMUX_STATUS_TIME_FORMAT "%H:%M" 42 | fi 43 | 44 | if [ -z "$date_format" ]; then 45 | tmux set-environment -g NORD_TMUX_STATUS_DATE_FORMAT "%Y-%m-%d" 46 | else 47 | tmux set-environment -g NORD_TMUX_STATUS_DATE_FORMAT "$date_format" 48 | fi 49 | 50 | if [ "$status_content" != "0" ]; then 51 | if [ "$no_patched_font" != "1" ]; then 52 | tmux source-file "$_current_dir/$NORD_TMUX_STATUS_CONTENT_FILE" 53 | else 54 | tmux source-file "$_current_dir/$NORD_TMUX_STATUS_CONTENT_NO_PATCHED_FONT_FILE" 55 | fi 56 | fi 57 | } 58 | 59 | __load 60 | __cleanup 61 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

Changelog for Nord tmux — An arctic, north-bluish clean and elegant tmux color theme.

6 | 7 | 8 | 9 | # 0.3.0 10 | 11 | ![Release Date: 2019-06-03](https://img.shields.io/badge/Release_Date-2019--06--03-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.03.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/projects/5) [![Milestone](https://img.shields.io/badge/Milestone-0.03.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/milestone/4) 12 | 13 | ## Features 14 | 15 | **Nord Docs Transition** — #36 ⇄ #37 (⊶ 6101cf85) 16 | ↠ Transferred all documentations, assets and from „Nord tmux“ to [Nord Docs][nord] 17 | Please see the [corresponding issue in the Nord Docs repository][nord-docs#153] to get an overview of what has changed for Nord tmux and what has been done to migrate to Nord Docs. 18 | 19 | ###### Landing Page 20 | 21 |

Preview: Nord tmux Port Project Landing Page

22 | 23 | ###### Landing Page Docs 24 | 25 |

Preview: Nord tmux Docs Landing Page

26 | 27 | ###### Installation & Activation Docs 28 | 29 |

Preview: Nord tmux Installation & Activation Docs Page

30 | 31 | ###### Configuration Docs 32 | 33 |

Preview: Nord tmux Configuration Docs Page

34 | 35 | ###### Plugin Support Docs 36 | 37 |

Preview: Nord tmux Plugin Support Docs Page

38 | 39 | **Patched Font Characters** — #5 ⇄ #11 (⊶ 0809657f) by [@petrhosek][gh-user-petrhosek] 40 | ↠ Added a new theme configuration to [disable patched fonts for the default status content][nord-docs-config-font-no-patched] by setting the `@nord_tmux_no_patched_font` variable to `1`. 41 | It can be used facing rendering problems with incompatible terminals or fonts. 42 | 43 | ```sh 44 | set -g @nord_tmux_no_patched_font "1" 45 | ``` 46 | 47 |

48 | 49 | **Optional Status Bar Content** — #7, #10 ⇄ #8, #12 (⊶ 27754979) by [@tsroten][gh-user-tsroten] and [@rgcr][gh-user-rgcr] 50 | ↠ Added a new theme configuration to [disable the default predefined status bar content][nord-docs-config-default-content], allowing to customize the status content, e.g. adding other plugins or adjust the layout, by setting the `@nord_tmux_show_status_content` variable to `0`: 51 | 52 | ```sh 53 | set -g @nord_tmux_show_status_content "0" 54 | ``` 55 | 56 |

57 | 58 | ## Improvements 59 | 60 | **Respect User's Status Bar Positioning** — #13 ⇄ #14 (⊶ ee5542c5) by [@drzel][gh-user-drzel] 61 | ↠ Removed the `status-position` property in order to respect the user's preferred status bar positioning configuration instead of overriding it. 62 | 63 | **More Spacing** — #16 (⊶ 2da9466c) by [@dylnmc][gh-user-dylnmc] 64 | ↠ Added a space character to the first and last status bar element in order to improve the visual appearance to make it look not so squeezed together. 65 | 66 |

Before

67 | 68 |

69 | 70 |

After

71 | 72 |

73 | 74 | ## Bug Fixes 75 | 76 | ### Documentation 77 | 78 | **Typo In `source-file` Command** — #32 (⊶ 72b0b3fb) by [@rememberYou][gh-user-rememberyou] 79 | ↠ Fixed a typo in the README for the `source-file` command. 80 | 81 | ## Tasks 82 | 83 | ### Documentation 84 | 85 | **More Spacing** — #16 (⊶ 2da9466c) by [@dylnmc][gh-user-dylnmc] 86 | ↠ Added a space character to the first and last status bar element in order to improve the visual appearance to make it look not so squeezed together. 87 | 88 | **MIT License** — #19 ⇄ #20 (⊶ 4d39639a) 89 | ↠ Adapted to the MIT license migration of the Nord project. Detailed information can be found in the main task ticket [arcticicestudio/nord#55][]. 90 | 91 | # 0.2.0 92 | 93 | _2017-04-22_ 94 | 95 | ## Features 96 | 97 | ### Plugin Support 98 | 99 | ❯ Implemented support for the [tmux-prefix-highlight](https://github.com/tmux-plugins/tmux-prefix-highlight) _prefix_- and `copy-mode` status indicator. (@kepbod, #3, 166c8956) 100 | 101 |


102 | 103 | # 0.1.1 104 | 105 | _2017-04-21_ 106 | 107 | ## Bug Fixes 108 | 109 | ❯ Fixed the plugin to be not loadable due to the missing `#!/usr/bin/env bash` hashbang and `+x` permission flag for the plugin loader [`nord.tmux`](https://github.com/arcticicestudio/nord-tmux/blob/develop/nord.tmux) which caused `tpm` to exit with code `126`. (@arcticicestudio, #4, c049da5e) 110 | 111 | # 0.1.0 112 | 113 | _2017-04-20_ 114 | 115 | ## Features 116 | 117 | Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-tmux/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-tmux/wiki). 118 | 119 | ❯ Implemented the main color theme file [`nord.conf`](https://github.com/arcticicestudio/nord-tmux/blob/develop/src/nord.conf). (@arcticicestudio, #1, e759aedc) 120 | 121 |

122 | 123 | ❯ Implemented the [`tpm`](https://github.com/tmux-plugins/tpm) plugin loader [`nord.tmux`](https://github.com/arcticicestudio/nord-tmux/blob/develop/nord.tmux). (@arcticicestudio, #2, e58b52e9) 124 | 125 | # 0.0.0 126 | 127 | _2016-04-20_ 128 | ❯ **Project Initialization** 129 | 130 | [arcticicestudio/nord#55]: https://github.com/arcticicestudio/nord/issues/55 131 | [gh-user-drzel]: https://github.com/drzel 132 | [gh-user-dylnmc]: https://github.com/dylnmc 133 | [gh-user-petrhosek]: https://github.com/petrhosek 134 | [gh-user-rememberyou]: https://github.com/rememberYou 135 | [gh-user-rgcr]: https://github.com/rgcr 136 | [gh-user-tsroten]: https://github.com/tsroten 137 | [nord-docs-config-default-content]: https://www.nordtheme.com/docs/ports/tmux/configuration#default-status-bar-content 138 | [nord-docs-config-font-no-patched]: https://www.nordtheme.com/docs/ports/tmux/configuration#patched-font-characters 139 | [nord-docs#153]: https://github.com/arcticicestudio/nord-docs/pull/153 140 | [nord]: https://www.nordtheme.com 141 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

6 | 7 |

An arctic, north-bluish clean and elegant tmux color theme.

8 | 9 |

Designed for a fluent and clear workflow based on the Nord color palette.

10 | 11 |

12 | 13 | ## Getting Started 14 | 15 | Visit the [official website][nord-home] to learn all about the [fluidly merging appearance][nord-home#intro] features, details and elements of [UI elements][nord-home#ui-elements], the [various theme configurations][nord-home#configurations] and the [support for plugins][nord-home#plugin-support]. 16 | 17 | Learn about the [installation and activation][nord-docs-home-install], how to [configure][nord-docs-home-config] the theme and [supported plugins][nord-docs-home-plugins] from the [official documentations][nord-docs-home]. 18 | 19 | ### Quick Start 20 | 21 | Thanks to existing plugin managers for tmux, Nord tmux can be installed for all platforms in a uniform way within a few lines of codes. The recommended manager is [tpm][gh-tmux-plugins/tpm], but any other manager like [tundle][gh-javier-lopez/tundle] can also be used. 22 | 23 | To automatically download and activate Nord tmux, follow the install instructions for [tpm][gh-tmux-plugins/tpm] and 24 | 25 | 1. add `set -g @plugin "arcticicestudio/nord-tmux"` to your [`tmux.conf`][tmux-man-tmux.conf], by default `.tmux.conf` located in your [home directory][wiki-home_dir] 26 | 2. press the default key binding `prefix` + I to fetch- and install the plugin 27 | 28 |

29 | 30 | See the Nord tmux's documentation for [more installation options][nord-docs-home-install] and how to [set it up manually][nord-docs-home-install#manual]. 31 | Also see [_tpm's_ install instructions][gh-tpm-docs-install-plugins] for more details. 32 | 33 | ## Features 34 | 35 |

Your terminal. Your style.

The unified UI element design provides a clutter-free and fluidly merging appearance.

36 | 37 |

38 | 39 |

40 | 41 |

Uniform design with beautiful UI elements.

The themed UI elements provide a fluid and unobtrusive transition from the terminal to the tmux status bar.

42 | 43 |

44 | 45 |

Take your favorite plugins with you.

The theme supports popular plugins for a fluid and unobtrusive user interface transition.

46 | 47 |

48 | 49 | ## Contributing 50 | 51 | Nord is an open source project and we love to receive contributions from the [community][nord-comm]! 52 | 53 | There are many ways to contribute, from [writing- and improving documentation and tutorials][nord-contrib-guide-docs], [reporting bugs][nord-contrib-guide-bugs], [submitting enhancement suggestions][nord-contrib-guide-enhance] that can be added to Nord by [submitting pull requests][nord-contrib-guide-pr]. 54 | 55 | Please take a moment to read Nord's full [contributing guide][nord-contrib-guide] to learn about the development process, the project's used [styleguides][nord-contrib-guide-styles], [branch organization][nord-contrib-guide-branching] and [versioning][nord-contrib-guide-versioning] model. 56 | 57 | The guide also includes information about [minimal, complete, and verifiable examples][nord-contrib-guide-mcve] and other ways to contribute to the project like [improving existing issues][nord-contrib-guide-impr-issues] and [giving feedback on issues and pull requests][nord-contrib-guide-feedback]. 58 | 59 |

60 | 61 |

Copyright © 2017-present Arctic Ice Studio and Sven Greb

62 | 63 |

64 | 65 | [gh-javier-lopez/tundle]: https://github.com/javier-lopez/tundle 66 | [gh-tmux-plugins/tpm]: https://github.com/tmux-plugins/tpm 67 | [gh-tpm-docs-install-plugins]: https://github.com/tmux-plugins/tpm#installing-plugins 68 | [nord-comm]: https://www.nordtheme.com/community 69 | [nord-contrib-guide-branching]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#branch-organization 70 | [nord-contrib-guide-bugs]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#bug-reports 71 | [nord-contrib-guide-docs]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#documentations 72 | [nord-contrib-guide-enhance]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#enhancement-suggestions 73 | [nord-contrib-guide-feedback]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#give-feedback-on-issues-and-pull-requests 74 | [nord-contrib-guide-impr-issues]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#improve-issues 75 | [nord-contrib-guide-mcve]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#mcve 76 | [nord-contrib-guide-pr]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#pull-requests 77 | [nord-contrib-guide-styles]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#styleguides 78 | [nord-contrib-guide-versioning]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md#versioning 79 | [nord-contrib-guide]: https://github.com/arcticicestudio/nord/blob/develop/CONTRIBUTING.md 80 | [nord-docs-home-config]: https://www.nordtheme.com/docs/ports/tmux/configuration 81 | [nord-docs-home-install]: https://www.nordtheme.com/docs/ports/tmux/installation 82 | [nord-docs-home-install#manual]: https://www.nordtheme.com/docs/ports/tmux/installation#manual 83 | [nord-docs-home-plugins]: https://www.nordtheme.com/docs/ports/tmux/plugin-support 84 | [nord-docs-home]: https://www.nordtheme.com/docs/ports/tmux 85 | [nord-home]: https://www.nordtheme.com/ports/tmux 86 | [nord-home#configurations]: https://www.nordtheme.com/ports/tmux#configurations 87 | [nord-home#intro]: https://www.nordtheme.com/ports/tmux#intro 88 | [nord-home#plugin-support]: https://www.nordtheme.com/ports/tmux#plugin-support 89 | [nord-home#ui-elements]: https://www.nordtheme.com/ports/tmux#ui-elements 90 | [tmux-man-tmux.conf]: http://man.openbsd.org/OpenBSD-current/man1/tmux.1#FILES 91 | [wiki-home_dir]: https://en.wikipedia.org/wiki/Home_directory 92 | --------------------------------------------------------------------------------