Last active
March 18, 2018 16:05
-
-
Save apas/d9126fbb29d15226bc6c3de84baeeb57 to your computer and use it in GitHub Desktop.
Usable, minimal vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax enable " Enable syntax highlighting | |
" Enable all Pathogen plugins | |
execute pathogen#infect() | |
set encoding=utf8 " Set UTF-8 encoding | |
set autoread " Reload files changed outside vim | |
set nocompatible " Use vim rather than vi settings | |
set backspace=indent,eol,start " Allow backspace in insert mode | |
set number " Line numbers are good | |
set nobackup " Disable file backups when writing files | |
set nowritebackup " Don't backup before overwriting files | |
set expandtab " Use the appropriate number of spaces to tab | |
set smarttab " A tab in front of a line inserts spaces | |
set shiftwidth=4 " # of spaces to use for autoindent | |
set tabstop=4 " # of spaces that a tab counts for | |
set textwidth=80 " Make all lines 80 chars or less | |
set wrap " Wrap lines longer than 80 chars | |
set linebreak " Wrap lines when convenient | |
set nojoinspaces " Set 1 space btwn lines/periods to be joined | |
set scrolloff=999 " Working line will always be in the center | |
set title " Set title of the Vim window | |
set titleold= " Revert to original title when exiting | |
set hlsearch " Highlight searches by default | |
set noshowmode " Don't show current mode [bc Lightline] | |
set noshowcmd " Don't show incomplete cmds [bc Lightline] | |
set laststatus=2 " Always show status bar | |
set autoindent " Use existing indent depth starting a new line | |
set smartindent " Do smart indenting when starting a new line | |
set background=light " Set solarized background color | |
colorscheme solarized " Set solarized colorscheme | |
" Set search results to white font, red background overriding solarized | |
autocmd ColorScheme * hi Search cterm=NONE ctermfg=white ctermbg=red | |
" Set Make tabs to tabs and not spaces | |
filetype on | |
autocmd FileType make set noexpandtab shiftwidth=4 | |
" Show char width column | |
set colorcolumn=+1 | |
" Color highlight char width col | |
highlight ColorColumn ctermbg=lightgrey | |
" Show current cursor line | |
set cursorline | |
" Color highlight c. cursor l. | |
highlight CursorLine ctermbg=grey cterm=NONE | |
" Color highlight line #s | |
highlight LineNr ctermfg=NONE | |
" Color highlight c. cursor l. | |
highlight CursorLineNr ctermfg=NONE | |
" Map yanking in visual mode to system's copy | |
map <C-c> "*y | |
" Map toggle automatic line comment (a la ST3) | |
map <C-/> gcc | |
" Clear previous search highlights | |
" <C-l> would originally redraw the screen; now we first clear, then redraw | |
nnoremap <C-l> :nohl<CR><C-L> | |
" Enable Lightline in xterm-color256 mode for proper compatibility | |
if !has('gui_running') | |
set t_Co=256 | |
endif | |
" Customize Lightline with a minimal set of configs + current git branch | |
let g:lightline = { | |
\ 'colorscheme': 'solarized', | |
\ 'active': { | |
\ 'left': [['mode', 'paste'], ['gitbranch'], ['filename', 'modified']], | |
\ 'right': [['lineinfo'], ['percent']] | |
\ }, | |
\ 'component_function': { | |
\ 'gitbranch': 'gitbranch#name' | |
\ }, | |
\ } | |
" Persisent undo --- store all change information in an undodir | |
" Check if an undodir exists, otherwise create it w proper permissions | |
if !isdirectory($HOME."/.vim/undodir") | |
call mkdir($HOME."/.vim/undodir", "", 0700) | |
endif | |
set undodir=$HOME/.vim/undodir " Set undodir path | |
set undofile " Write changes to the undofile | |
set undolevels=1000 " Max # of changes that can be undone | |
set undoreload=10000 " Max # of lines to save for undo on buf reload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Install all plugins via Pathogen in ~/.vim/bundle | |
" Good centralized Vim plugin source: vimawesome.com | |
delimitMate.vim " Automated closing of quotes, etc | |
lightline.vim " A lightweight status line | |
tcomment_vim " An on-off toggle for comments | |
vim-bufkill " Better buffer management :BD | |
vim-colors-solarized " Solarized precision colors | |
vim-gitbranch " Get current git branch (Lightline plugin) | |
vim-gitgutter " Track git changes in the gutter | |
vim-unimpaired " Better bracket mappings ([b ]b for buffers) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A screenshot
iTerm 2 color scheme: Solarized Light.