From c46d3c2f875b72687fa695fb14a0220630f1e206 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Tue, 26 Dec 2017 13:02:41 +0000 Subject: [PATCH 1/3] Removed broken nginx --- .vimrc | 1 - bundle/vundle | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 3909e79..f46a1df 100644 --- a/.vimrc +++ b/.vimrc @@ -68,7 +68,6 @@ Plugin 'vim-syntastic/syntastic' Plugin 'Shougo/vimproc.vim' Plugin 'leafgarland/typescript-vim' Plugin 'SirVer/ultisnips' -Plugin 'evanmiller/nginx-vim-syntax' Plugin 'chr4/nginx.vim' Plugin 'tpope/vim-dispatch' diff --git a/bundle/vundle b/bundle/vundle index 6497e37..fcc2042 160000 --- a/bundle/vundle +++ b/bundle/vundle @@ -1 +1 @@ -Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92 +Subproject commit fcc204205e3305c4f86f07e09cd756c7d06f0f00 From 99f2b65260aa1b9001d22ee6faeabb2832662243 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Wed, 27 Dec 2017 10:34:29 +0000 Subject: [PATCH 2/3] Removed heavy extensions of on pi --- .vimrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.vimrc b/.vimrc index f46a1df..1859b19 100644 --- a/.vimrc +++ b/.vimrc @@ -5,6 +5,7 @@ set encoding=utf8 set rtp+=~/.vim/bundle/vundle/ call vundle#rc() +let s:uname = system("echo -n \"$(uname)\"") "Auto reload .vimrc autocmd! bufwritepost .vimrc source % @@ -72,8 +73,6 @@ Plugin 'chr4/nginx.vim' Plugin 'tpope/vim-dispatch' Plugin 'Xuyuanp/nerdtree-git-plugin' -Plugin 'Valloric/YouCompleteMe' -Plugin 'marijnh/tern_for_vim' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'klen/python-mode' @@ -86,12 +85,15 @@ Plugin 'vim-airline/vim-airline-themes' Plugin 'ntpeters/vim-better-whitespace' Plugin 'ap/vim-buftabline' Plugin 'elzr/vim-json' -Plugin 'OmniSharp/omnisharp-vim' -Plugin 'OrangeT/vim-csharp' Plugin 'morhetz/gruvbox' Plugin 'ryanoasis/vim-devicons' - +if system("uname -m") != "armv7l\n" + Plugin 'Valloric/YouCompleteMe' + Plugin 'marijnh/tern_for_vim' + Plugin 'OmniSharp/omnisharp-vim' + Plugin 'OrangeT/vim-csharp' +endif " step 2: font configuration " " These are the basic settings to get the font to work (required): set guifont=Droid\ Sans\ Mono\ for\ Powerline\ Nerd\ Font\ Complete\ 12 From cd31dfd46a055d91930f54338142f5612e2e8015 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Fri, 26 Jan 2018 19:39:32 +0000 Subject: [PATCH 3/3] Update .gitmodules --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 8e88664..47f2608 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "bundle/vundle"] path = bundle/vundle - url = git://github.com/gmarik/vundle.git + url = git://github.com/VundleVim/Vundle.vim.git