diff options
author | neodarz <neodarz@neodarz.net> | 2018-05-07 21:11:05 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2018-05-07 21:11:05 +0200 |
commit | c4f6816662f768193963b0a9fbbbf8d2263214a4 (patch) | |
tree | 019fbed8ef8593260ea9d5e2c688c8e4537df435 | |
parent | 48b97351e8e65800d18843bf1b7f6506df9da5fc (diff) | |
download | dotfiles_ascii-c4f6816662f768193963b0a9fbbbf8d2263214a4.tar.xz dotfiles_ascii-c4f6816662f768193963b0a9fbbbf8d2263214a4.zip |
Add system clipboard tool
-rwxr-xr-x | install.sh | 1 | ||||
-rw-r--r-- | zsh/.zsh/plugin.zsh | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -33,6 +33,7 @@ yolo -S otf-fira-code #git clone git://github.com/zsh-users/zsh-history-substring-search ~/.zsh/plugins/zsh-history-substring-search #git clone git://github.com/zsh-users/zsh-syntax-highlighting ~/.zsh/plugins/zsh-syntax-highlighting #git clone https://github.com/zsh-users/zsh-completions ~/.zsh/plugins/zsh-completions +#git clone https://github.com/NeodarZ/zsh-system-clipboard.git ~/.zsh/plugins/zsh-system-clipboard.git #chsh -s $(which zsh) diff --git a/zsh/.zsh/plugin.zsh b/zsh/.zsh/plugin.zsh index bb9573a..609071a 100644 --- a/zsh/.zsh/plugin.zsh +++ b/zsh/.zsh/plugin.zsh @@ -1,4 +1,7 @@ +bindkey -v + source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh source ~/.zsh/plugins/zsh-completions/zsh-completions.plugin.zsh +source ~/.zsh/plugins/zsh-system-clipboard/zsh-system-clipboard.zsh |