Refactor markdown plugins, enable conceal, add day colorscheme to term
This commit is contained in:
parent
320d62e880
commit
675e4fd9d5
2 changed files with 65 additions and 8 deletions
|
|
@ -46,11 +46,6 @@ Plug 'tpope/vim-commentary' " easily toggle comments for lines, paragraphs etc w
|
|||
Plug 'tommcdo/vim-exchange' " adds exchange operator with cx. common use: cxiw . on 2 words to switch
|
||||
Plug 'tpope/vim-surround' " lets you change surrounding things with cs (or ds to del, ys to add)
|
||||
|
||||
Plug 'kana/vim-textobj-user' " dependency for most other textobj plugins
|
||||
Plug 'reedes/vim-textobj-sentence' " extends the capabilities of sentence detection
|
||||
" and allows you to jump to the *end* of this <g)> or last <g(> sentence.
|
||||
|
||||
|
||||
" " Ecosystem
|
||||
" " Plug 'tpope/vim-fugitive' - Will have to take a closer look some other time
|
||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " show a directory listing within vim
|
||||
|
|
@ -79,7 +74,11 @@ augroup load_html_utils
|
|||
\| autocmd! load_html_utils
|
||||
augroup END
|
||||
|
||||
" Markdown & Prose Workflow
|
||||
" Prose Workflow
|
||||
Plug 'kana/vim-textobj-user' " dependency for most other textobj plugins
|
||||
Plug 'reedes/vim-textobj-sentence' " extends the capabilities of sentence detection
|
||||
" and allows you to jump to the *end* of this <g)> or last <g(> sentence.
|
||||
|
||||
Plug 'reedes/vim-pencil', { 'for': ['markdown', 'txt'], 'on': 'Goyo' } " provide md convenience functions like hard/softwrap
|
||||
Plug 'junegunn/goyo.vim', { 'for': ['markdown', 'txt'], 'on': 'Goyo' } " provide distraction free writing
|
||||
Plug 'junegunn/limelight.vim', { 'for': ['markdown', 'txt'], 'on': 'Goyo' } " provide even distraction free-er writing (lowlight paragraphs)
|
||||
|
|
@ -179,7 +178,7 @@ let g:pandoc#spell#default_langs=["en_us", "de_de"]
|
|||
let g:pandoc#hypertext#ausosave_on_edit_open_link=1
|
||||
let g:pandoc#hypertext#create_if_no_alternates_exists=1
|
||||
" configuration for vim-pandoc and vim-rmarkdown
|
||||
let g:pandoc#syntax#conceal#use = 0
|
||||
let g:pandoc#syntax#conceal#use = 1
|
||||
|
||||
" PLUGIN: wiki.vim
|
||||
if $WIKIROOT ==? ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue