complete jaq plugin and code fold

This commit is contained in:
gameloader
2022-11-28 14:19:09 +08:00
parent bb51b61c79
commit cfcf4c2ff0
3 changed files with 6 additions and 5 deletions

View File

@ -9,11 +9,11 @@ require("jaq-nvim").setup({
-- Uses shell commands
external = {
markdown = "glow %",
python = "python %",
python = "python3 %",
go = "go run %",
sh = "sh %",
c = "cd $dir && gcc $file -o $fileBase -g && $dir/$fileBase",
cpp = "cd $dir && g++ $file -o $fileBase -g -w -std=c++11 && $dir/$fileBase",
c = "cd $dir && gcc $file -o $fileBase -g && $fileBase",
cpp = "cd $dir && g++ $file -o $fileBase -g -w -std=c++11 && $fileBase",
},
},