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:
|
||||
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
|
||||
@stow -t ~/ --no-folding zsh
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
* termite
|
||||
* weechat
|
||||
* zsh
|
||||
* zsh + zsh-completions
|
||||
* screenfetch+scrot
|
||||
* OpenSSH
|
||||
* htop
|
||||
|
@ -57,3 +57,4 @@
|
|||
* (neo)mutt
|
||||
* notmuch
|
||||
* isync (aka mbsync)
|
||||
* urlview
|
||||
|
|
|
@ -63,6 +63,7 @@ set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.config/tmux/plugins'
|
|||
set -g @tpm_plugins ' \
|
||||
tmux-plugins/tpm \
|
||||
tmux-plugins/tmux-yank \
|
||||
tmux-plugins/tmux-urlview \
|
||||
tmux-plugins/tmux-sensible \
|
||||
tmux-plugins/tmux-pain-control \
|
||||
tmux-plugins/tmux-prefix-highlight \
|
||||
|
|
14
zsh/.zshrc
14
zsh/.zshrc
|
@ -1,21 +1,21 @@
|
|||
# Path to your oh-my-zsh installation.
|
||||
export ZSH=$HOME/.oh-my-zsh
|
||||
|
||||
# Theme
|
||||
ZSH_THEME="ys" #powerlevel9k/powerlevel9k"
|
||||
# theme
|
||||
ZSH_THEME="ys"
|
||||
|
||||
# Disable updates
|
||||
# disable omz updates
|
||||
DISABLE_UPDATE_PROMPT=true
|
||||
DISABLE_AUTO_UPDATE=true
|
||||
|
||||
# Plugins
|
||||
# plugins
|
||||
plugins=(archlinux common-aliases git sudo ssh-agent rust colored-man-pages gpg-agent)
|
||||
|
||||
# ZSH-Completions
|
||||
plugins+=(zsh-completions)
|
||||
# zsh-completions
|
||||
autoload -U compinit && compinit
|
||||
|
||||
# User configuration
|
||||
# add ~/bin and /usr/local/bin to $PATH
|
||||
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||
|
||||
# source omz
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
|
Loading…
Reference in a new issue