general.vim 233 B

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