Modify integration of urlview & zsh completions
This commit is contained in:
parent
4debdb9f6e
commit
0810627fa2
4 changed files with 10 additions and 9 deletions
1
Makefile
1
Makefile
|
@ -65,7 +65,6 @@ weechat:
|
||||||
|
|
||||||
zsh:
|
zsh:
|
||||||
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
||||||
git clone https://github.com/zsh-users/zsh-completions.git ~/.oh-my-zsh/custom/plugins/zsh-completions
|
|
||||||
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
|
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
|
||||||
@stow -t ~/ --no-folding zsh
|
@stow -t ~/ --no-folding zsh
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
|
|
||||||
* termite
|
* termite
|
||||||
* weechat
|
* weechat
|
||||||
* zsh
|
* zsh + zsh-completions
|
||||||
* screenfetch+scrot
|
* screenfetch+scrot
|
||||||
* OpenSSH
|
* OpenSSH
|
||||||
* htop
|
* htop
|
||||||
|
@ -57,3 +57,4 @@
|
||||||
* (neo)mutt
|
* (neo)mutt
|
||||||
* notmuch
|
* notmuch
|
||||||
* isync (aka mbsync)
|
* isync (aka mbsync)
|
||||||
|
* urlview
|
||||||
|
|
|
@ -63,6 +63,7 @@ set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.config/tmux/plugins'
|
||||||
set -g @tpm_plugins ' \
|
set -g @tpm_plugins ' \
|
||||||
tmux-plugins/tpm \
|
tmux-plugins/tpm \
|
||||||
tmux-plugins/tmux-yank \
|
tmux-plugins/tmux-yank \
|
||||||
|
tmux-plugins/tmux-urlview \
|
||||||
tmux-plugins/tmux-sensible \
|
tmux-plugins/tmux-sensible \
|
||||||
tmux-plugins/tmux-pain-control \
|
tmux-plugins/tmux-pain-control \
|
||||||
tmux-plugins/tmux-prefix-highlight \
|
tmux-plugins/tmux-prefix-highlight \
|
||||||
|
|
14
zsh/.zshrc
14
zsh/.zshrc
|
@ -1,21 +1,21 @@
|
||||||
# Path to your oh-my-zsh installation.
|
# Path to your oh-my-zsh installation.
|
||||||
export ZSH=$HOME/.oh-my-zsh
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
# Theme
|
# theme
|
||||||
ZSH_THEME="ys" #powerlevel9k/powerlevel9k"
|
ZSH_THEME="ys"
|
||||||
|
|
||||||
# Disable updates
|
# disable omz updates
|
||||||
DISABLE_UPDATE_PROMPT=true
|
DISABLE_UPDATE_PROMPT=true
|
||||||
DISABLE_AUTO_UPDATE=true
|
DISABLE_AUTO_UPDATE=true
|
||||||
|
|
||||||
# Plugins
|
# plugins
|
||||||
plugins=(archlinux common-aliases git sudo ssh-agent rust colored-man-pages gpg-agent)
|
plugins=(archlinux common-aliases git sudo ssh-agent rust colored-man-pages gpg-agent)
|
||||||
|
|
||||||
# ZSH-Completions
|
# zsh-completions
|
||||||
plugins+=(zsh-completions)
|
|
||||||
autoload -U compinit && compinit
|
autoload -U compinit && compinit
|
||||||
|
|
||||||
# User configuration
|
# add ~/bin and /usr/local/bin to $PATH
|
||||||
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
|
# source omz
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
Loading…
Reference in a new issue