diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..13f6001 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule ".vim/bundle/vim-pathogen"] + path = .vim/bundle/vim-pathogen + url = https://github.com/tpope/vim-pathogen.git +[submodule ".vim/bundle/vim-gitgutter"] + path = .vim/bundle/vim-gitgutter + url = https://github.com/airblade/vim-gitgutter.git +[submodule ".vim/bundle/ale"] + path = .vim/bundle/ale + url = https://github.com/w0rp/ale.git diff --git a/.vim/bundle/ale b/.vim/bundle/ale new file mode 160000 index 0000000..2cfa09e --- /dev/null +++ b/.vim/bundle/ale @@ -0,0 +1 @@ +Subproject commit 2cfa09e02d65cd06649fb1ae5f988b7a110a124d diff --git a/.vim/bundle/vim-gitgutter b/.vim/bundle/vim-gitgutter new file mode 160000 index 0000000..1d422b9 --- /dev/null +++ b/.vim/bundle/vim-gitgutter @@ -0,0 +1 @@ +Subproject commit 1d422b9f98194e38bc56e54192c9bc66d95c21f1 diff --git a/.vim/bundle/vim-pathogen b/.vim/bundle/vim-pathogen new file mode 160000 index 0000000..e9fb091 --- /dev/null +++ b/.vim/bundle/vim-pathogen @@ -0,0 +1 @@ +Subproject commit e9fb0914dba5bdfe2feaa364dda2e9495c5620a2 diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..d91c5b8 --- /dev/null +++ b/.vimrc @@ -0,0 +1,17 @@ +runtime bundle/vim-pathogen/autoload/pathogen.vim +execute pathogen#infect() +filetype on +syntax on +set colorcolumn=90 +set number +set hidden +set history=100 +filetype indent on +set nowrap +set tabstop=4 +set shiftwidth=4 +set expandtab +set smartindent +set autoindent +set hlsearch +set showmatch