Fix python3 path

This commit is contained in:
Tyler Hallada 2023-12-01 15:26:00 -05:00
parent 9718a12736
commit b107f04d38

View File

@ -64,7 +64,7 @@ vim.opt.completeopt = 'menuone,noinsert,noselect'
vim.o.shortmess = vim.o.shortmess .. 'c'
-- Python
vim.g.python3_host_prog = '/usr/bin/python3'
vim.g.python3_host_prog = vim.fn.has('macunix') and '/opt/homebrew/bin/python3' or '/usr/bin/python3'
--Shell
vim.opt.shell = 'fish'