vim: Formatting and clean-up
- README.md: Fixed formatting - vimrc: Comments and clean-up - vimrc-plugins: Clean-up
This commit is contained in:
parent
3f1c9f8359
commit
d16f50e4ce
3 changed files with 5 additions and 11 deletions
|
@ -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
|
### Bundles File
|
||||||
The vimrc.bundles file stores the plugin information for
|
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
|
## Notable Plugins
|
||||||
* [Fugitive](https://github.com/tpope/vim-fugitive) for nice Git integration.
|
* [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.
|
* [vimwiki](https://github.com/vimwiki/vimwiki) for info, diary and notes.
|
||||||
* [Startify](https://github.com/mhinz/vim-startify) for a nice start-page
|
* [goyo](https://github.com/junegunn/goyo.vim) for zen-like text editing.
|
||||||
* [Syntastic](https://github.com/scrooloose/syntastic) for syntax checking.
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ set statusline+=%y\ " Filetype
|
||||||
set statusline+=%3* " Color change (see :hi)
|
set statusline+=%3* " Color change (see :hi)
|
||||||
set statusline+=\|%4l\:%2c\| " Line and column
|
set statusline+=\|%4l\:%2c\| " Line and column
|
||||||
|
|
||||||
augroup user_stl_colors
|
augroup user_stl_colors " Custom status-line colors
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd ColorScheme *
|
autocmd ColorScheme *
|
||||||
\ hi User1 term=bold cterm=bold ctermfg=009 ctermbg=010 |
|
\ hi User1 term=bold cterm=bold ctermfg=009 ctermbg=010 |
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
" vimrc-plugins: Plug-in configuration. Using vim-plug.
|
" vimrc-plugins: Plug-in configuration. Using vim-plug.
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
|
|
||||||
" Fetch & Install Self
|
" Fetch & Install Self
|
||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||||
|
@ -10,7 +9,6 @@ if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
call plug#begin('~/.vim/bundle')
|
call plug#begin('~/.vim/bundle')
|
||||||
" Current list of plugins
|
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-tbone'
|
Plug 'tpope/vim-tbone'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
|
@ -21,16 +19,13 @@ call plug#begin('~/.vim/bundle')
|
||||||
Plug 'ajh17/VimCompletesMe'
|
Plug 'ajh17/VimCompletesMe'
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
"Plug 'ludovicchabant/vim-gutentags'
|
"Plug 'ludovicchabant/vim-gutentags'
|
||||||
" Appearance Related
|
|
||||||
Plug 'junegunn/goyo.vim'
|
Plug 'junegunn/goyo.vim'
|
||||||
" Syntax Related
|
|
||||||
Plug 'tmux-plugins/vim-tmux'
|
Plug 'tmux-plugins/vim-tmux'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
" Plugin Configuration
|
" Plugin Configuration
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
|
|
||||||
" Vimwiki Configs
|
" Vimwiki Configs
|
||||||
let g:vimwiki_list = [{'path': '~/Workbench/vimwiki/', 'auto_tags': 1}]
|
let g:vimwiki_list = [{'path': '~/Workbench/vimwiki/', 'auto_tags': 1}]
|
||||||
"" Insert my journal template, and the current date
|
"" Insert my journal template, and the current date
|
||||||
|
|
Loading…
Reference in a new issue