Fix python3 path

This commit is contained in:
Tyler Hallada
2023-03-22 15:56:06 -04:00
parent 1a511ed782
commit b609475dcd

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'