summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2021-04-17 09:53:13 +0200
committera-kenji <aks.kenji@protonmail.com>2021-04-17 15:05:34 +0200
commite5fc158503996366b82d6f089bc6e017b08492b0 (patch)
tree48f61f1329a5990b8ca021789e58fd16a981ba40 /README.md
parent60ad7494739b4cbcd857e74df9d05830459323eb (diff)
Add Unbind for Keybindings (#241)
* will unbind all default keybindings for now * add test for toplevel unbind * add example/default.yaml * add example/README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index af7e1bc4b..e54e0eee2 100644
--- a/README.md
+++ b/README.md
@@ -45,8 +45,11 @@ An example file can be found under `example/config.yaml`.
Zellij will look for a file `/zellij/config.yaml` in the default configuration location of your os.
-To pass a config file directly to zellij run it either with:
-`cargo run -- config [FILE]` or `zellij config [FILE]`.
+* To ignore the default config file location:
+`zellij config --clean` or `cargo make run -- config --clean`
+
+* To pass a config file directly to zellij run it either with:
+`zellij config [FILE]` or `cargo make run -- config [FILE]` .
The structure is as follows:
```
@@ -77,6 +80,13 @@ keybinds:
```
Will create a new tab on pressing either the `c` or the `d` key.
+* It is possible to unbind the default Keybindings:
+```
+keybinds:
+ unbind: true
+```
+
+
# What is the current status of the project?
Zellij is in the last stages of being VT compatible. As much as modern terminals are.