re-organized venv-selector

This commit is contained in:
Jeremie Fraeys 2023-11-07 16:42:00 -05:00
parent 8623090268
commit 8c93e97b86
6 changed files with 259 additions and 234 deletions

View file

@ -1,6 +1,6 @@
local opt = vim.opt
local g = vim.g
local options = {
local opts = {
-- change cursor in insert mode
guicursor = "",
@ -54,7 +54,7 @@ local options = {
pyxversion = 3
}
for k, v in pairs(options) do
for k, v in pairs(opts) do
vim.opt[k] = v
end