LunarVim/modules/general.vim
Christian Chiarulli b550a87cec began new config
2019-02-10 15:17:03 -05:00

11 lines
233 B
VimL

" Be IMproved
if &compatible
set nocompatible
endif
" Gives vim abilty to recognize filetypes
filetype plugin indent on
" Enables syntax highlighing
syntax enable
let g:python3_host_prog = '~/Miniconda/envs/neovim/bin/python3.7'