2022-10-31 11:04:38 +01:00
|
|
|
{ commonRC, ... }@args:
|
2017-04-05 14:17:51 +02:00
|
|
|
|
|
|
|
import ../../pkg-configuration/vim-derivates/vim.nix (args // {
|
|
|
|
name = "vim-for-pandoc";
|
|
|
|
additionalRC = commonRC + ''
|
|
|
|
set statusline+=%#warningmsg#
|
|
|
|
set statusline+=%{SyntasticStatuslineFlag()}
|
|
|
|
set statusline+=%*
|
|
|
|
|
|
|
|
let g:syntastic_always_populate_loc_list = 1
|
|
|
|
let g:syntastic_auto_loc_list = 1
|
|
|
|
let g:syntastic_check_on_open = 1
|
|
|
|
let g:syntastic_check_on_wq = 0
|
2022-10-31 11:04:38 +01:00
|
|
|
'';
|
|
|
|
additionalPlugins = [ "vim-pandoc" "vim-pandoc-syntax" "vimpreviewpandoc" ];
|
2017-04-05 14:17:51 +02:00
|
|
|
})
|