Compare commits

...

2 Commits

Author SHA1 Message Date
Felipe M 882a86e27b
config: rofi use `drun` instead of `run` 2021-01-20 13:57:57 +01:00
Felipe M 8098ad257e
docs: zsh 2021-01-20 13:57:35 +01:00
2 changed files with 18 additions and 1 deletions

View File

@ -19,7 +19,7 @@ set $term alacritty
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.
#set $menu dmenu_path | dmenu | xargs swaymsg exec --
set $menu rofi -show run
set $menu rofi -show drun
# Fonts
set $font Terminus

17
.dotfiles/docs/zsh.md Normal file
View File

@ -0,0 +1,17 @@
# ZSH
## Use emacs style keybindings
``` zsh
bindkey -e
```
## Use selective up/down command history
In order to traverse the command history with up/down arrows but filtering by the command that is already written in the terminal, we need to use oh-my-zsh
Get installation instructions from [the oh-my-zsh github repository](https://github.com/ohmyzsh/ohmyzsh).
```
source $HOME/.oh-my-zsh/oh-my-zsh.sh
```