1
0
mirror of https://github.com/Adam-Ant/dotfiles synced 2024-06-14 11:17:22 +00:00

Add some vim markdown plugins

This commit is contained in:
Adam Dodman 2017-09-04 01:07:25 +01:00
parent f45d9d8ed1
commit da77ac5cc4
5 changed files with 22 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
vim/.netrwhist

6
.gitmodules vendored
View File

@ -10,3 +10,9 @@
[submodule "vim/bundle/vim-gitgutter"]
path = vim/bundle/vim-gitgutter
url = https://github.com/airblade/vim-gitgutter
[submodule "vim/bundle/vim-markdown-preview"]
path = vim/bundle/vim-markdown-preview
url = https://github.com/JamshedVesuna/vim-markdown-preview.git
[submodule "vim/bundle/vim-markdown-toc"]
path = vim/bundle/vim-markdown-toc
url = git@github.com:mzlogin/vim-markdown-toc.git

@ -0,0 +1 @@
Subproject commit bdb4454ab0dfb29d8b84b2515d77d013bed564d8

@ -0,0 +1 @@
Subproject commit f42c2fdfe78050b21eb37d970aa4b2ecbcf637db

View File

@ -7,8 +7,21 @@ set tabstop=2
set shiftwidth=2
set expandtab
set scrolloff=4
set t_Co=256
set laststatus=2
set number
let g:airline_powerline_fonts = 1
let g:airline_theme='murmur'
" markdown-preview
let vim_markdown_preview_toggle=1
let vim_markdown_preview_browser='Firefox'
let vim_markdown_preview_use_xdg_open=1
let vim_markdown_preview_github=1
" markdown-toc
let g:vmt_auto_update_on_save=0
let g:vmt_dont_insert_fence=1
let g:vmt_cycle_list_item_markers=1