summaryrefslogtreecommitdiff
path: root/modules/general.vim
blob: 23f7a85b3b08d398126232fff53eb379a92b8b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
" 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'