remove vim compatibility stuff

This commit is contained in:
Grigory Shipunov 2021-10-21 20:55:32 +02:00
parent 2250d7fbc3
commit 5a862395e6
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C

View file

@ -1,4 +1,3 @@
if has('nvim')
call plug#begin(stdpath('data') . '/plugged')
" insert images into markdown automagically
Plug 'ferrine/md-img-paste.vim'
@ -28,11 +27,6 @@ if has('nvim')
autocmd FileType markdown nmap <buffer><silent> <localleader>p :call mdip#MarkdownClipboardImage()<CR>
let g:mdip_imgdir = 'static'
let g:mdip_imgname = 'image'
else
set nocompatible
filetype plugin indent on
syntax enable
endif
colorscheme dim
@ -96,3 +90,6 @@ set conceallevel=0
" and another time for supid ones who continue to insist
let g:pandoc#syntax#conceal#use = 0
let g:tex_conceal = ''
" vim-pandoc really tries to be 'user-friendly'...
let g:pandoc#modules#disabled = [ "spell", "folding" ]