added omnicomplete completions

This commit is contained in:
2024-06-18 08:52:39 -07:00
parent eb05af3573
commit 7ff9b5e77f

11
.vimrc
View File

@@ -1,6 +1,8 @@
set nocompatible set nocompatible
syntax on syntax on
filetype plugin 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 path+=**
set wildmenu set wildmenu
@@ -46,4 +48,11 @@ au FileType *
\ autoindent \ autoindent
\ smartindent \ smartindent
"Python Specific Config
au FileType python
\ set fileformat=unix
\ tabstop=4
\ softtabstop=4
\ shiftwidth=4
\ encoding=utf-8
\ makeprg=flake8\ %