all repos — dotfiles @ 2c86b164a61b537fe8069a9e221fec62e39a0f3c

linux dotfiles

vim: add sheerun/vim-polyglot plugin
Prithu Goswami pg@prithu.dev
Sat, 22 Jan 2022 22:16:58 +0530
commit

2c86b164a61b537fe8069a9e221fec62e39a0f3c

parent

abcd3c83250383fbcd7ac83cf1b678b7a27cd954

1 files changed, 6 insertions(+), 0 deletions(-)

jump to
M home/.vimrchome/.vimrc

@@ -2,6 +2,8 @@ " Vundle stuff starts here

set nocompatible filetype off +let g:polyglot_disabled = ['csv', 'python'] + set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin()

@@ -18,6 +20,7 @@ Plugin 'rakr/vim-one'

Plugin 'tomasr/molokai' Plugin 'junegunn/fzf.vim' Plugin 'chriskempson/base16-vim' +Plugin 'sheerun/vim-polyglot' " Plugin 'dhruvasagar/vim-table-mode' Plugin 'dense-analysis/ale' Plugin 'szw/vim-maximizer'

@@ -49,6 +52,9 @@ set termguicolors

" load filetype-specific indent files filetype plugin indent on + + + " compiling for different file types " autocmd FileType markdown nnoremap cm :w<Enter>:!pandoc -f gfm -V geometry=margin=0.75in --resource-path="expand('%:p:h')/img" -V links-as-notes -o %.pdf %<Enter><Enter>