mirror of
https://github.com/Adam-Ant/dotfiles
synced 2024-12-20 11:34:35 +00:00
Add some vim markdown plugins
This commit is contained in:
parent
f45d9d8ed1
commit
da77ac5cc4
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
vim/.netrwhist
|
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -10,3 +10,9 @@
|
|||||||
[submodule "vim/bundle/vim-gitgutter"]
|
[submodule "vim/bundle/vim-gitgutter"]
|
||||||
path = vim/bundle/vim-gitgutter
|
path = vim/bundle/vim-gitgutter
|
||||||
url = https://github.com/airblade/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
|
||||||
|
1
vim/bundle/vim-markdown-preview
Submodule
1
vim/bundle/vim-markdown-preview
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit bdb4454ab0dfb29d8b84b2515d77d013bed564d8
|
1
vim/bundle/vim-markdown-toc
Submodule
1
vim/bundle/vim-markdown-toc
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit f42c2fdfe78050b21eb37d970aa4b2ecbcf637db
|
13
vim/vimrc
13
vim/vimrc
@ -7,8 +7,21 @@ set tabstop=2
|
|||||||
set shiftwidth=2
|
set shiftwidth=2
|
||||||
set expandtab
|
set expandtab
|
||||||
|
|
||||||
|
set scrolloff=4
|
||||||
|
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set number
|
set number
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
let g:airline_theme='murmur'
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user