s o y d e v
Prithu Goswami prithugoswami524@gmail.com
Wed, 26 Aug 2020 05:17:29 +0530
1 files changed,
7 insertions(+),
0 deletions(-)
jump to
M
.vimrc
→
.vimrc
@@ -20,6 +20,8 @@ Plugin 'tomasr/molokai'
Plugin 'junegunn/fzf.vim' Plugin 'chriskempson/base16-vim' Plugin 'dhruvasagar/vim-table-mode' +Plugin 'dense-analysis/ale' + call vundle#end()@@ -55,6 +57,7 @@ " autocmd FileType markdown nnoremap cm :w<Enter>:!pandoc -f markdown+raw_tex+raw_attribute -o pdf/%.pdf %<Enter><Enter>
autocmd FileType tex nnoremap cm :w<Enter>:!xelatex % 1&>/dev/null<Enter><Enter> " autocmd FileType tex nnoremap cm :w<Enter>:!pdflatex -interaction nonstopmode % 1&>/dev/null<Enter><Enter> autocmd FileType html setlocal ts=2 sts=2 sw=2 +autocmd FileType javascript setlocal sw=2 " autocmd FileType c nnoremap cp :w<Enter>:!clear && gcc % && ./a.out<Enter> autocmd BufRead *.pdentry :Goyo autocmd BufRead *.pdentry set nosmartindent@@ -156,6 +159,10 @@ " let &t_SI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=1\x7\<Esc>\\"
" endif " nnoremap <leader>n :w<Enter>:!ns %<Enter> + +let g:ale_linters = { +\ 'javascript': ['eslint'], +\} let g:table_mode_corner_corner='+' let g:table_mode_header_fillchar='='