From 5edc2df7e7226d8e458b0c48f7f58ac9a2313406 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Thu, 31 Aug 2017 10:51:05 -0600 Subject: Update vim-options.vim Moving noisert completion to neovim only, most legacy vims won't have support --- plugin/vim-options.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin') diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index f6555c3..4300a38 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -19,7 +19,6 @@ set history=1000 " Set number of ':' commands set relativenumber " Use relative numbers in the sidebar set number " Show line numbers in side bar set nowrap " Turn off text wrapping long lines -set completeopt=menu,preview,noinsert " default is menu,preview. Don't insert text until selection is made set wildmode=list:longest,full " wildmenu show list and completes longest, second tab completes full and cycles set splitright " New windows split to the right of current one set splitbelow " New windows split below the current one @@ -113,6 +112,7 @@ if has('nvim') set backupdir=.vimcache/backup/ set directory=.vimcache/swp/ let g:syntastic_python_python_exec = '/usr/bin/python3' + set completeopt=menu,preview,noinsert " default is menu,preview. Don't insert text until selection is made nnoremap er :call RestoreSession() nnoremap y :call system('nc -w 1 172.17.0.1 41401', @0) else -- cgit v1.2.3