LunarVim/modules/general.vim

12 lines
233 B
VimL
Raw Normal View History

2019-02-10 21:17:03 +01:00
" 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'