diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-04 23:49:06 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-04 23:49:06 +0200 |
commit | 151c9d632dc7c176268802bc9e7bb03cfcb2dfa6 (patch) | |
tree | 820e47e0cfe08f28d5fe276f86babd97d44f78f8 | |
parent | fullscreen sxiv (diff) | |
download | dotfiles-bsd-151c9d632dc7c176268802bc9e7bb03cfcb2dfa6.tar.gz dotfiles-bsd-151c9d632dc7c176268802bc9e7bb03cfcb2dfa6.tar.bz2 dotfiles-bsd-151c9d632dc7c176268802bc9e7bb03cfcb2dfa6.tar.xz dotfiles-bsd-151c9d632dc7c176268802bc9e7bb03cfcb2dfa6.tar.zst dotfiles-bsd-151c9d632dc7c176268802bc9e7bb03cfcb2dfa6.zip |
update
-rw-r--r-- | .config/zsh/.zshrc | 5 | ||||
-rw-r--r-- | .config/zsh/plugins.zsh | 1 | ||||
-rwxr-xr-x | .local/bin/discord | 2 | ||||
-rwxr-xr-x | .local/bin/teams | 3 |
4 files changed, 9 insertions, 2 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 6fbceec..a50a1d3 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -62,6 +62,11 @@ exa_after_cd() { } add-zsh-hook chpwd exa_after_cd +autoload -Uz url-quote-magic +zle -N self-insert url-quote-magic +autoload -Uz bracketed-paste-magic +zle -N bracketed-paste bracketed-paste-magic + [ -f "$ZDOTDIR"/alias.zsh ] && source "$ZDOTDIR"/alias.zsh [ -f "$ZDOTDIR"/plugins.zsh ] && source "$ZDOTDIR"/plugins.zsh [ -f "$XDG_PACKAGE_HOME"/fzf/shell/completion.zsh ] && source "$XDG_PACKAGE_HOME"/fzf/shell/completion.zsh diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh index abf7f8b..1ef66a9 100644 --- a/.config/zsh/plugins.zsh +++ b/.config/zsh/plugins.zsh @@ -11,5 +11,4 @@ # == ===== ==== == # ======================== -# source $HOME/Packages/git-prompt.zsh/git-prompt.zsh source $HOME/.local/packs/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh >/dev/null diff --git a/.local/bin/discord b/.local/bin/discord index a65d643..558001f 100755 --- a/.local/bin/discord +++ b/.local/bin/discord @@ -1,3 +1,3 @@ #!/bin/sh -/usr/local/bin/firefox --kiosk discord.com/app +/usr/local/bin/chrome discord.com/app diff --git a/.local/bin/teams b/.local/bin/teams new file mode 100755 index 0000000..03aa8af --- /dev/null +++ b/.local/bin/teams @@ -0,0 +1,3 @@ +#!/bin/sh + +/usr/local/bin/chrome teams.live.com |