diff options
Diffstat (limited to 'modules/general.vim')
-rw-r--r-- | modules/general.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/general.vim b/modules/general.vim new file mode 100644 index 00000000..23f7a85b --- /dev/null +++ b/modules/general.vim @@ -0,0 +1,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' |