summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Leferry 2 <alexherbo2@gmail.com>2020-06-28 16:54:07 +0200
committerAlex Leferry 2 <alexherbo2@gmail.com>2020-06-28 16:54:39 +0200
commit555ba57e1b739950c7307f50eb42dbd07c9aa0cd (patch)
tree1de2a619948e10222602171d85bd53a7a7aead9b
parentdb291607fbf404b6f20256412cbf3f7f9420ed6e (diff)
README: Update configuration
-rw-r--r--README.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/README.md b/README.md
index 636f2d9..9421e07 100644
--- a/README.md
+++ b/README.md
@@ -77,17 +77,19 @@ Kakoune session: kantoâ–ˆ
## Configuration
``` kak
+# Modules
require-module connect-fzf
-require-module connect-dmenu
-require-module connect-rofi
-require-module connect-wofi
-require-module connect-lf
-require-module connect-dolphin
+
+# Explore files and buffers with fzf
+alias global explore-files fzf-files
+alias global explore-buffers fzf-buffers
+
+# Terminal settings
+map global user t ': enter-user-mode terminal<ret>' -docstring 'Terminal'
# Create a new window
map global normal <c-n> ': new<ret>'
map global normal <c-t> ': connect-terminal<ret>'
-map global normal <c-w> ': connect-shell alacritty<ret>'
# Quit
map global normal <c-q> ': quit<ret>'