comparison .chezmoitemplates/config.vim @ 498:91c0d97cd4d4

Clean up unused vimscript
author zegervdv <zegervdv@me.com>
date Sat, 04 Dec 2021 12:13:11 +0100
parents 16cc2c9c3d6b
children f0c94c3f5fd9
comparison
equal deleted inserted replaced
497:852acbe7ae8e 498:91c0d97cd4d4
551 " 551 "
552 " System Verilog 552 " System Verilog
553 augroup ft_systemverilog 553 augroup ft_systemverilog
554 au! 554 au!
555 au FileType systemverilog setlocal suffixesadd+=.sv,.v 555 au FileType systemverilog setlocal suffixesadd+=.sv,.v
556 au FileType systemverilog setlocal foldmethod=expr
557 au FileType systemverilog,verilog call SVAlign()
558 au FileType systemverilog,verilog let b:delimitMate_quotes = "\""
559 au FileType systemverilog,verilog setlocal iskeyword+=' 556 au FileType systemverilog,verilog setlocal iskeyword+='
560 augroup END 557 augroup END
561 558
562 function! SVAlign()
563 let g:easy_align_delimiters = {
564 \ ')': { 'pattern': '[()]', 'left_margin': 0, 'right_margin': 0, 'stick_to_left': 0}
565 \}
566 endfunction
567 " 559 "
568 " Make 560 " Make
569 augroup ft_make 561 augroup ft_make
570 autocmd! 562 autocmd!
571 autocmd BufEnter *.make setlocal filetype=make 563 autocmd BufEnter *.make setlocal filetype=make