vim.g.python3_host_prog = '/usr/bin/python' vim.g.mapleader = ' ' -- Setup packer local fn = vim.fn local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim' if fn.empty(fn.glob(install_path)) > 0 then fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path }) vim.cmd 'packadd packer.nvim' end -- Source settings require('plugins') require('settings')