summaryrefslogtreecommitdiff
path: root/modules/general.vim
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2019-02-10 15:17:03 -0500
committerChristian Chiarulli <[email protected]>2019-02-10 15:17:03 -0500
commitb550a87ceca5449a9687f5861c3e7cb6e7b2bd1a (patch)
treea5799d2d00f242b2cd197728d70a75515521e2e6 /modules/general.vim
parentf7b91819c36603dbbbcf5807200facf1d7367223 (diff)
began new config
Diffstat (limited to 'modules/general.vim')
-rw-r--r--modules/general.vim11
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'