From d16f50e4ce08fb235a176dead29c955d8b724b96 Mon Sep 17 00:00:00 2001 From: Bill Nibz Date: Tue, 15 Aug 2017 23:05:04 -0400 Subject: [PATCH] vim: Formatting and clean-up - README.md: Fixed formatting - vimrc: Comments and clean-up - vimrc-plugins: Clean-up --- vim/README.md | 9 ++++----- vim/vimrc | 2 +- vim/vimrc-plugins | 5 ----- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/vim/README.md b/vim/README.md index c1a99f1..48f7a7a 100644 --- a/vim/README.md +++ b/vim/README.md @@ -1,6 +1,6 @@ -#Vim Configuration Files +# Vim Configuration Files -My vim configuration is relatively straight forward. I comment most lines. +My vim configuration is relatively straight forward and thoroughly commented. ### Bundles File The vimrc.bundles file stores the plugin information for @@ -11,7 +11,6 @@ I want a plugin-free install, I can ignore this file and still run fine. ## Notable Plugins * [Fugitive](https://github.com/tpope/vim-fugitive) for nice Git integration. -* [Vinegar](https://github.com/tpope/vim-vinegar) for file browsing. +* [Polyglot](https://github.com/sheerun/vim-polyglot) for language files. * [vimwiki](https://github.com/vimwiki/vimwiki) for info, diary and notes. -* [Startify](https://github.com/mhinz/vim-startify) for a nice start-page -* [Syntastic](https://github.com/scrooloose/syntastic) for syntax checking. +* [goyo](https://github.com/junegunn/goyo.vim) for zen-like text editing. diff --git a/vim/vimrc b/vim/vimrc index a97cabf..216255d 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -73,7 +73,7 @@ set statusline+=%y\ " Filetype set statusline+=%3* " Color change (see :hi) set statusline+=\|%4l\:%2c\| " Line and column -augroup user_stl_colors +augroup user_stl_colors " Custom status-line colors autocmd! autocmd ColorScheme * \ hi User1 term=bold cterm=bold ctermfg=009 ctermbg=010 | diff --git a/vim/vimrc-plugins b/vim/vimrc-plugins index 7c0f163..e9ad3f1 100644 --- a/vim/vimrc-plugins +++ b/vim/vimrc-plugins @@ -1,7 +1,6 @@ " ============================================================================== " vimrc-plugins: Plug-in configuration. Using vim-plug. " ============================================================================== - " Fetch & Install Self if empty(glob('~/.vim/autoload/plug.vim')) silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs @@ -10,7 +9,6 @@ if empty(glob('~/.vim/autoload/plug.vim')) endif call plug#begin('~/.vim/bundle') - " Current list of plugins Plug 'tpope/vim-fugitive' Plug 'tpope/vim-tbone' Plug 'tpope/vim-surround' @@ -21,16 +19,13 @@ call plug#begin('~/.vim/bundle') Plug 'ajh17/VimCompletesMe' Plug 'sheerun/vim-polyglot' "Plug 'ludovicchabant/vim-gutentags' - " Appearance Related Plug 'junegunn/goyo.vim' - " Syntax Related Plug 'tmux-plugins/vim-tmux' call plug#end() " ============================================================================== " Plugin Configuration " ============================================================================== - " Vimwiki Configs let g:vimwiki_list = [{'path': '~/Workbench/vimwiki/', 'auto_tags': 1}] "" Insert my journal template, and the current date