Skip to content

Commit 166c895

Browse files
Merge branch 'feature/ghi-#3-plugin-support-tmux-prefix-highlight' into develop
2 parents ca832af + 8d6cc29 commit 166c895

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Based on the <a href="https://github.com/arcticicestudio/nord">Nord</a> color pa
1717
- [GitHub Repository Clone](#gitHub-repository-clone)
1818
- [Activation](#activation)
1919
- [Features](#features)
20+
- [Plugin Support](#plugin-support)
21+
- [tmux-prefix-highlight](#tmux-prefix-highlight)
2022
- [Development](#development)
2123
- [Contribution](#contribution)
2224

@@ -76,6 +78,12 @@ tmux source-file `~/.tmux.conf`
7678

7779
<p align="center"><strong>Fits to many terminal applications based on Nord</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-tmux/develop/src/assets/scrot-htop.png"/></p>
7880

81+
## Plugin Support
82+
### [tmux-prefix-highlight](https://github.com/tmux-plugins/tmux-prefix-highlight)
83+
Supports the *prefix*- and `copy-mode` status indicator.
84+
85+
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-tmux/develop/src/assets/scrot-plugin-support-tmux-prefix-highlight.png"/><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-tmux/develop/src/assets/scrot-plugin-support-tmux-prefix-highlight-copy-mode.png"/></p>
86+
7987
## Development
8088
[![](https://img.shields.io/badge/Changelog-0.1.1-81A1C1.svg)](https://github.com/arcticicestudio/nord-tmux/blob/v0.1.1/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver)
8189

24.8 KB
Loading
23.5 KB
Loading

src/nord.conf

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
88
# copyright Copyright (C) 2017 +
99
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10+
#+----------------+
11+
#+ Plugin Support +
12+
#+----------------+
13+
#+--- tmux-prefix-highlight ---+
14+
set -g @prefix_highlight_fg black
15+
set -g @prefix_highlight_bg brightcyan
16+
set -g @prefix_highlight_copy_mode_attr "fg=brightcyan,bg=black,bold"
17+
set -g @prefix_highlight_output_prefix "#[fg=brightcyan]#[bg=black]#[nobold]#[noitalics]#[nounderscore]#[bg=brightcyan]#[fg=black]"
18+
set -g @prefix_highlight_output_suffix ""
19+
1020
#+---------+
1121
#+ Options +
1222
#+---------+
@@ -27,7 +37,7 @@ set -g status-attr none
2737

2838
#+--- Bars ---+
2939
set -g status-left "#[fg=black,bg=blue,bold] #S#[fg=blue,bg=black,nobold,noitalics,nounderscore]"
30-
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"
40+
set -g status-right "#{prefix_highlight}#[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"
3141

3242
#+--- Windows ---+
3343
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]"

0 commit comments

Comments
 (0)