aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <thornycrackers@users.noreply.github.com>2017-08-31 10:51:05 -0600
committerGitHub <noreply@github.com>2017-08-31 10:51:05 -0600
commit5edc2df7e7226d8e458b0c48f7f58ac9a2313406 (patch)
tree27e3cebeb2fc1038f20d03bebf6fd6e8f335f729
parentfde1e9fd51d6b42e2c7ec9a7d65f731d0c5bb79e (diff)
Update vim-options.vim
Moving noisert completion to neovim only, most legacy vims won't have support
-rw-r--r--plugin/vim-options.vim2
1 files changed, 1 insertions, 1 deletions
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 <leader>er :call RestoreSession()<CR>
nnoremap <leader>y :call system('nc -w 1 172.17.0.1 41401', @0)<CR>
else