1
1
Fork 0

Nicer markdown writing

This commit is contained in:
Joe Wroten 2017-02-26 12:49:35 -06:00
parent 04988eb686
commit 5768b51f45
2 changed files with 28 additions and 1 deletions

View file

@ -1,8 +1,9 @@
#!/bin/bash
echo "-= Installing System Dependencies =-"
brew install zsh tmux neovim/neovim/neovim python3 ag
brew install zsh tmux neovim/neovim/neovim python3 ag node
brew tap caskroom/cask
brew cask install iterm2
npm -g install instant-markdown-d
echo "-= Installing Fonts =-"
brew tap caskroom/fonts

26
vimrc
View file

@ -60,6 +60,12 @@ Plug 'Shougo/vimfiler.vim', { 'on': 'VimFiler' }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'w0rp/ale'
" Markdown and Distraction Free Writing
Plug 'suan/vim-instant-markdown'
Plug 'junegunn/limelight.vim'
Plug 'reedes/vim-wordy'
Plug 'dbmrq/vim-ditto'
" Movement
Plug 'justinmk/vim-sneak'
@ -146,3 +152,23 @@ xmap f <Plug>Sneak_f
xmap F <Plug>Sneak_F
omap f <Plug>Sneak_f
omap F <Plug>Sneak_F
" writing
let g:limelight_conceal_ctermfg = 'DarkGray'
let g:limelight_conceal_guifg = 'DarkGray'
highlight Folded ctermbg=NONE
highlight FoldColumn ctermbg=NONE
autocmd Filetype markdown call SetMarkdownOptions()
function SetMarkdownOptions()
" Enable spellcheck.
set spell spelllang=en_us
set nonumber
set norelativenumber
set foldcolumn=10
set textwidth=80
Limelight
Wordy weak
DittoOn
endfunction