From 726cecaff9a65f69faaa01a583dfac6e905f3ade Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 9 Mar 2022 14:57:19 -0600 Subject: [PATCH] feat(nvim): Set python3_host_prog --- .config/nvim/lua/core/globals.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/core/globals.lua b/.config/nvim/lua/core/globals.lua index 427ac6b5..f1119740 100644 --- a/.config/nvim/lua/core/globals.lua +++ b/.config/nvim/lua/core/globals.lua @@ -3,6 +3,7 @@ local g = vim.g local M = {} M.setup = function() + g.python3_host_prog = ("(%s)/.pyenv/shims/python3"):format(os.getenv("HOME")) end return M