Poet-v is a vim/nvim plugin that detects and activates virtual environments in your python poetry or pipenv project.
It is inspired (and closely resembles) both vim-virtualenv and its pipenv spin-off vim-pipenv. However it also adds the ability to interact with virtual environments created by poetry and integrates nicely with jedi-vim (and deoplete-jedi).
Install using your preferred package manager. For example using dein.vim:
call dein#add('petobens/poet-v')
Poet-v provides just two commands:
PoetvActivate
: activates the corresponding poetry or pipenv venv (see below for
details regarding order) and enforces jedi (and deoplete-jedi) to use it (if
jedi-vim/deoplete-jedi
is installed).PoetvDeactivate
: deactivates the current venv.There is also a function, poetv#statusline()
, that retrieves the current venv name. It
can be used for instance to display such information in the statusline (poet-v in fact
employs this to provide out of the box integration with
vim-airline).
The following variables (along with their default values) control poet-v behaviour:
g:poetv_executables = ['poetry', 'pipenv']
g:poetv_auto_activate = 0
g:poetv_statusline_symbol = ''
poetv#statusline()
function.g:poetv_set_environment = 1
$VIRTUAL_ENV
and $PATH
environment variables
when a venv gets activated.