From abd3e09c5aa81440b2233a58730fe1ba0b3ce2f2 Mon Sep 17 00:00:00 2001 From: Jakub Sobczak Date: Tue, 8 Sep 2020 15:15:42 +0200 Subject: [PATCH 1/2] fix not-existing Floaterm wintype option --- keys/which-key.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keys/which-key.vim b/keys/which-key.vim index 30e6703a..06b66fda 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -230,7 +230,7 @@ let g:which_key_map.l = { " t is for terminal let g:which_key_map.t = { \ 'name' : '+terminal' , - \ ';' : [':FloatermNew --wintype=popup --height=6' , 'terminal'], + \ ';' : [':FloatermNew --wintype=normal --height=6' , 'terminal'], \ 'f' : [':FloatermNew fzf' , 'fzf'], \ 'g' : [':FloatermNew lazygit' , 'git'], \ 'd' : [':FloatermNew lazydocker' , 'docker'], From 6e7b73a5c4a5b7836dc3ce29455dc0ebf5c52d48 Mon Sep 17 00:00:00 2001 From: Sanskar Jethi Date: Fri, 11 Sep 2020 01:47:26 +0530 Subject: [PATCH 2/2] Add --user flag --- utils/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/install.sh b/utils/install.sh index 422cd4c1..884309f3 100755 --- a/utils/install.sh +++ b/utils/install.sh @@ -52,7 +52,7 @@ installpip() { \ installpynvim() { \ echo "Installing pynvim..." - pip3 install pynvim + pip3 install pynvim --user } installcocextensions() { \