Skip to content

Commit 42c9463

Browse files
committed
fix: post_set_venv not getting set in config
Because post_set_venv was nil is wasn't getting set in the config setup table
1 parent 1186ad4 commit 42c9463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/python/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ PythonConfig.defaults = {
1717
-- Path for venvs picker
1818
venvs_path = vim.fn.expand("~/.virtualenvs"),
1919
-- Something to do after setting an environment
20-
post_set_venv = nil,
20+
post_set_venv = false,
2121
-- base path for creating new venvs
2222
auto_create_venv_path = function(parent_dir)
2323
return vim.fs.joinpath(parent_dir, ".venv")

0 commit comments

Comments
 (0)