Skip to content

Commit c64219f

Browse files
committed
Merge pull request #10 from bruno-/master
Add compatibility with TPM
2 parents 50299c1 + e0809ab commit c64219f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ For this, start tmux as `tmux -2`.
1717

1818
This color scheme is tested with tmux >= 1.5. tmux 1.1 is reported as not working.
1919

20+
### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm)
21+
22+
Add plugin to the list of TPM plugins in `.tmux.conf`:
23+
24+
set -g @plugin 'seebi/tmux-colors-solarized'
25+
26+
Hit `prefix + I` to fetch the plugin and source it. The plugin should now be working.
27+
2028
## Screenshot
2129
Here is a screenshot of a tmux session captured from a gnome-terminal using the [dz-version of the awesome Inconsolata font](http://nodnod.net/2009/feb/12/adding-straight-single-and-double-quotes-inconsola/).
2230

tmuxcolors.tmux

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4+
5+
main() {
6+
tmux source-file "$CURRENT_DIR/tmuxcolors-256.conf"
7+
}
8+
main

0 commit comments

Comments
 (0)