Ryan Rueger

ryan@rueg.re / picture / key / home
aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorrrueger <rrueger@ethz.ch>2019-12-24 17:09:08 +0100
committerrrueger <rrueger@ethz.ch>2019-12-24 17:09:08 +0100
commitcca242e13460ced60433ef1e832131777169424f (patch)
tree8ef7bc574aded1c96218bf6935a10a8c4fe1f0c4 /README.md
parent81c2ed7668582f81560bcb5a3f9a99ceb5f761ca (diff)
downloadstatusryne-cca242e13460ced60433ef1e832131777169424f.tar.gz
statusryne-cca242e13460ced60433ef1e832131777169424f.tar.bz2
statusryne-cca242e13460ced60433ef1e832131777169424f.zip
Multiple buffers per tab and colouring explanation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md48
1 files changed, 48 insertions, 0 deletions
diff --git a/README.md b/README.md
index ef9a5af..cfa6143 100644
--- a/README.md
+++ b/README.md
@@ -30,8 +30,56 @@ Features:
![Preview of tabline](screenshots/statusryne-tabline.png)
![Preview of tabline](screenshots/statusryne-tabline-widths.png)
+![Preview of tabline](screenshots/statusryne-tabline-multiple-buffers.png)
Features:
* *(Equal spacing)* Tab widths are set to equal lengths whenever a new buffer is
opened.
+
+* *(Filetype indicators)* When certain buffers are opened, an additional label
+ is added to the buffer name:
+
+ * `[H]` For help buffers
+ * `[Q]` For quickfix windows
+ * `[New]` For new buffers with no name yet
+
+* *(Display all open buffers in window)* If a window has two open (visible)
+ buffers in it, for example in a vertical split, both buffer names will be
+ displayed. If a tab is open on two open buffers, the active buffer will be
+ highlighted in a darker colour.
+
+#### Colours
+
+I am using Ethan Schoonover's light solarized colour scheme with a slight
+modification of the base colour. This is done by setting the colours in the
+terminal emulator (`alacritty` in my case) explicitly, and then using relative
+labels in the plugin. Below are explicit RGB values in the `alacritty`
+configuration format
+
+```
+colors:
+ primary:
+ background: '0xf2f1f0' # Original: 0xfdf6e3
+ foreground: '0x657b83'
+
+ normal:
+ black: '0x073642'
+ red: '0xd54e53'
+ green: '0x859900'
+ yellow: '0xb58900'
+ blue: '0x268bd2'
+ magenta: '0xd33682'
+ cyan: '0x2aa198'
+ white: '0xe3e3e3' # Original: 0xeee8d5
+
+ bright:
+ black: '0x002b36'
+ red: '0xdc322f'
+ green: '0x586e75'
+ yellow: '0x657b83'
+ blue: '0x839496'
+ magenta: '0x6c71c4'
+ cyan: '0x93a1a1'
+ white: '0xf2f1f0' # Original: 0xfdf6e3
+```