commit 76784791be9834abf21a1b3dcbece1d61fc37e4d
parent cef8f52b5dfaba4ca181021d2fc19a6d43cffa71
Author: Remy Noulin <loader2x@gmail.com>
Date: Mon, 11 Feb 2019 11:32:04 -0500
add pick and yank
debian/1-system.sh | 13 +++++++++++++
dotfiles/.vimrc | 3 +++
2 files changed, 16 insertions(+)
Diffstat:
2 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/debian/1-system.sh b/debian/1-system.sh
@@ -83,5 +83,18 @@ ln -s $OFF git-off
mkdir /etc/.git/hooks
etckeeper init
+# install pick
+apt-get install autotools-dev automake
+git clone https://github.com/mptre/pick
+cd pick
+./autogen.sh
+./configure
+make install clean
+
+# install yank
+git clone https://github.com/mptre/yank
+cd yank
+make install clean
+
# end
apt-get autoremove -y
diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc
@@ -94,6 +94,8 @@ Plugin 'posva/vim-vue'
Plugin 'vim-scripts/Align'
+Plugin 'calleerlandsson/pick.vim'
+
let g:ConqueTerm_Color = 2 " 1: strip color after 200 lines, 2: always with color
let g:ConqueTerm_CloseOnEnd = 1 " close conque when program ends running
let g:ConqueTerm_StartMessages = 0 " display warning messages if conqueTerm is configured incorrectly
@@ -230,3 +232,4 @@ inoremap <F10> <c-o>:tabnext<CR>
nnoremap <F7> :q<CR>
nnoremap <S-F7> :qa<CR>
nnoremap <C-F7> :qa!<CR>
+nnoremap <F5> :call PickFile()<CR>