From 417264f45b08bb98a25c63afa4c5649f40006455 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Tue, 28 Mar 2017 13:18:41 +0000 Subject: Remove unused zsh plugins --- zsh/.zsh/plugins | 4 ---- 1 file changed, 4 deletions(-) (limited to 'zsh/.zsh/plugins') diff --git a/zsh/.zsh/plugins b/zsh/.zsh/plugins index 7b6cda8..3a148c8 100644 --- a/zsh/.zsh/plugins +++ b/zsh/.zsh/plugins @@ -14,10 +14,6 @@ if ! zgen saved; then # Oh-my-zsh plugins zgen oh-my-zsh plugins/git zgen oh-my-zsh plugins/vi-mode - zgen oh-my-zsh plugins/archlinux - zgen oh-my-zsh plugins/ubuntu - zgen oh-my-zsh plugins/tmux - zgen oh-my-zsh plugins/themes # Appearance zgen load mafredri/zsh-async -- cgit v1.2.3 From 9600f2f2037429da7179b2399347b1857028de85 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 26 Apr 2017 11:51:47 +0100 Subject: Make various improvements --- bash/.bashrc | 2 ++ vim/.vimrc | 3 +++ zsh/.zsh/alias | 3 --- zsh/.zsh/plugins | 6 ------ zsh/.zshrc | 2 ++ 5 files changed, 7 insertions(+), 9 deletions(-) (limited to 'zsh/.zsh/plugins') diff --git a/bash/.bashrc b/bash/.bashrc index 8b13789..e5d6fc1 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -1 +1,3 @@ + +[ -f ~/.fzf.bash ] && source ~/.fzf.bash diff --git a/vim/.vimrc b/vim/.vimrc index b5e4436..9f1cbb2 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -60,6 +60,7 @@ Plug 'vim-scripts/ReplaceWithRegister' Plug 'vim-scripts/SpellCheck' Plug 'vim-scripts/gmsh.vim' " Plug 'w0rp/ale' +Plug 'wellle/targets.vim' if has("nvim") Plug 'Shougo/deoplete.nvim' @@ -227,10 +228,12 @@ endif " Plugins interactions function! Multiple_cursors_before() let b:deoplete_disable_auto_complete = 1 + exe 'NeoCompleteLock' endfunction function! Multiple_cursors_after() let b:deoplete_disable_auto_complete = 0 + exe 'NeoCompleteUnlock' endfunction "" Vim variables diff --git a/zsh/.zsh/alias b/zsh/.zsh/alias index d34f4b4..1ad7711 100644 --- a/zsh/.zsh/alias +++ b/zsh/.zsh/alias @@ -24,6 +24,3 @@ alias rd='cd $(git rev-parse --show-toplevel)' alias mi='make install' alias mc='make clean' alias mca='make clean-all' - -# Unablias ag from ubuntu plugin -unalias ag diff --git a/zsh/.zsh/plugins b/zsh/.zsh/plugins index dae567c..7c86956 100644 --- a/zsh/.zsh/plugins +++ b/zsh/.zsh/plugins @@ -16,10 +16,6 @@ if ! zgen saved; then zgen oh-my-zsh plugins/git zgen oh-my-zsh plugins/vi-mode - # Appearance - zgen load mafredri/zsh-async - zgen load sindresorhus/pure - # Navigation plugins zgen load urbainvaes/fzf-marks @@ -36,8 +32,6 @@ if ! zgen saved; then zgen save fi -# Plugins configuration - # Autosuggestion { ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=6' diff --git a/zsh/.zshrc b/zsh/.zshrc index dc84770..379aa7d 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -19,4 +19,6 @@ if [[ -f "${HOME}/.gpg-agent-info" ]]; then export SSH_AUTH_SOCK fi +PROMPT='%0~ $ ' + [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh -- cgit v1.2.3