diff --git a/vim/.vim/.netrwhist b/vim/.vim/.netrwhist new file mode 100644 index 0000000..cfc5347 --- /dev/null +++ b/vim/.vim/.netrwhist @@ -0,0 +1,3 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhistcnt =1 +let g:netrw_dirhist_1='/home/shaun/Documents/git/schools/main' diff --git a/vim/.vim/bundle/Vundle.vim b/vim/.vim/bundle/Vundle.vim new file mode 160000 index 0000000..5548a1a --- /dev/null +++ b/vim/.vim/bundle/Vundle.vim @@ -0,0 +1 @@ +Subproject commit 5548a1a937d4e72606520c7484cd384e6c76b565 diff --git a/vim/.vim/bundle/YouCompleteMe b/vim/.vim/bundle/YouCompleteMe new file mode 160000 index 0000000..131b182 --- /dev/null +++ b/vim/.vim/bundle/YouCompleteMe @@ -0,0 +1 @@ +Subproject commit 131b1827354871a4e984c1660b6af0fefca755c3 diff --git a/vim/.vimrc b/vim/.vimrc new file mode 100644 index 0000000..0154953 --- /dev/null +++ b/vim/.vimrc @@ -0,0 +1,43 @@ +set nocompatible " be iMproved, required +filetype off " required + +" set the runtime path to include Vundle and initialize +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +" alternatively, pass a path where Vundle should install plugins +"call vundle#begin('~/some/path/here') + +" let Vundle manage Vundle, required +Plugin 'VundleVim/Vundle.vim' + +" Keep Plugin commands between vundle#begin/end. + +Plugin 'ycm-core/YouCompleteMe' + + +" All of your Plugins must be added before the following line +call vundle#end() " required +filetype plugin indent on " required +" To ignore plugin indent changes, instead use: +"filetype plugin on +" +" Brief help +" :PluginList - lists configured plugins +" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate +" :PluginSearch foo - searches for foo; append `!` to refresh local cache +" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal +" +" see :h vundle for more details or wiki for FAQ +" Put your non-Plugin stuff after this line + +set number +set hlsearch +syntax on + +set backspace=indent,eol,start + +set background=dark +set showcmd + +let python_highlight_all = 1 +