From 7ff9b5e77f4a76b69378b887e42d550bc002713e Mon Sep 17 00:00:00 2001 From: jozamudi Date: Tue, 18 Jun 2024 08:52:39 -0700 Subject: [PATCH] added omnicomplete completions --- .vimrc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 39619e9..e96e340 100644 --- a/.vimrc +++ b/.vimrc @@ -1,6 +1,8 @@ set nocompatible syntax on filetype plugin on +set autoread " Set to auto read when a file is changed from the outside +set omnifunc=syntaxcomplete#Complete set path+=** set wildmenu @@ -46,4 +48,11 @@ au FileType * \ autoindent \ smartindent - +"Python Specific Config +au FileType python +\ set fileformat=unix +\ tabstop=4 +\ softtabstop=4 +\ shiftwidth=4 +\ encoding=utf-8 +\ makeprg=flake8\ %