Nicer markdown writing
This commit is contained in:
parent
04988eb686
commit
5768b51f45
2 changed files with 28 additions and 1 deletions
3
init.sh
3
init.sh
|
@ -1,8 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "-= Installing System Dependencies =-"
|
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 tap caskroom/cask
|
||||||
brew cask install iterm2
|
brew cask install iterm2
|
||||||
|
npm -g install instant-markdown-d
|
||||||
|
|
||||||
echo "-= Installing Fonts =-"
|
echo "-= Installing Fonts =-"
|
||||||
brew tap caskroom/fonts
|
brew tap caskroom/fonts
|
||||||
|
|
26
vimrc
26
vimrc
|
@ -60,6 +60,12 @@ Plug 'Shougo/vimfiler.vim', { 'on': 'VimFiler' }
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
Plug 'w0rp/ale'
|
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
|
" Movement
|
||||||
Plug 'justinmk/vim-sneak'
|
Plug 'justinmk/vim-sneak'
|
||||||
|
|
||||||
|
@ -146,3 +152,23 @@ xmap f <Plug>Sneak_f
|
||||||
xmap F <Plug>Sneak_F
|
xmap F <Plug>Sneak_F
|
||||||
omap f <Plug>Sneak_f
|
omap 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue