summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2020-09-10 22:36:45 -0400
committerGitHub <[email protected]>2020-09-10 22:36:45 -0400
commiteac63ccf8e94803ded15f71ab9ae6821b085afdb (patch)
tree5c09df3874acef48b86fcc784922e6381fde55b6
parent013bccb990ed204cce615fbfa5c086fa4edd5144 (diff)
parent6e7b73a5c4a5b7836dc3ce29455dc0ebf5c52d48 (diff)
Merge pull request #54 from stealthanthrax/patch-1
Fix Pynvim crashing on OSX
-rw-r--r--keys/which-key.vim2
-rwxr-xr-xutils/install.sh2
2 files changed, 2 insertions, 2 deletions
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'],
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() { \