Skip to content

Commit

Permalink
Add additional plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
silug committed May 3, 2016
1 parent cccacc7 commit 62fb1cf
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 4 deletions.
21 changes: 21 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,24 @@
[submodule "bundle/vim-fugitive"]
path = bundle/vim-fugitive
url = https://github.com/tpope/vim-fugitive.git
[submodule "bundle/tlib_vim"]
path = bundle/tlib_vim
url = https://github.com/tomtom/tlib_vim.git
[submodule "bundle/vim-addon-mw-utils"]
path = bundle/vim-addon-mw-utils
url = https://github.com/MarcWeber/vim-addon-mw-utils.git
[submodule "bundle/vim-snipmate"]
path = bundle/vim-snipmate
url = https://github.com/garbas/vim-snipmate.git
[submodule "bundle/vim-snippets"]
path = bundle/vim-snippets
url = https://github.com/honza/vim-snippets.git
[submodule "bundle/tabular"]
path = bundle/tabular
url = https://github.com/godlygeek/tabular.git
[submodule "bundle/vim-puppet"]
path = bundle/vim-puppet
url = https://github.com/rodjek/vim-puppet.git
[submodule "bundle/syntastic"]
path = bundle/syntastic
url = https://github.com/scrooloose/syntastic.git
28 changes: 24 additions & 4 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ endif
" I *always* use a light-on-dark terminal.
set background=dark

" Status bar stuff.
set showcmd
set laststatus=2

" Make tab completion work more like it does in bash.
set wildmode=longest,list

Expand Down Expand Up @@ -105,3 +101,27 @@ set mouse+=a
" Enable pathogen
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()

" Status bar stuff.
set showcmd
set laststatus=2

" Default left statusline info
set statusline=%<%f\ %h%m%r

" Fugitive statusline
set statusline+=%{fugitive#statusline()}

" Syntastic statusline
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

" Default right statusline info
set statusline+=%=%-14.(%l,%c%V%)\ %P

" Syntastic settings
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ There will be things commented out, maybe because they didn't work, or because I
tried something and didn't like it. I will try to add some comments about why
things didn't work when I think about it.

The various plugins that I'm using have dependencies. On Fedora, they can be
met with the following:

dnf install puppet rubygem-puppet-lint

<!--
vim: ai et tw=80 spell spelllang=en
-->
1 change: 1 addition & 0 deletions bundle/syntastic
Submodule syntastic added at 579faf
1 change: 1 addition & 0 deletions bundle/tabular
Submodule tabular added at 60f256
1 change: 1 addition & 0 deletions bundle/tlib_vim
Submodule tlib_vim added at 34b132
1 change: 1 addition & 0 deletions bundle/vim-addon-mw-utils
Submodule vim-addon-mw-utils added at 0c5612
1 change: 1 addition & 0 deletions bundle/vim-puppet
Submodule vim-puppet added at d881b9
1 change: 1 addition & 0 deletions bundle/vim-snipmate
Submodule vim-snipmate added at 66555c
1 change: 1 addition & 0 deletions bundle/vim-snippets
Submodule vim-snippets added at da573e

0 comments on commit 62fb1cf

Please sign in to comment.