Nvim: add new plugins

This commit is contained in:
Robert Kmieć
2024-02-29 23:25:41 +01:00
parent 05e8624509
commit 4bd5c09035
19 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
return {
url = "https://git.sr.ht/~p00f/godbolt.nvim",
opts = {
languages = {
cpp = { compiler = "g122", options = {} },
c = { compiler = "cg122", options = {} },
rust = { compiler = "r1650", options = {} },
-- any_additional_filetype = { compiler = ..., options = ... },
},
quickfix = {
enable = false, -- whether to populate the quickfix list in case of errors
auto_open = false -- whether to open the quickfix list in case of errors
},
url = "https://godbolt.org" -- can be changed to a different godbolt instance
}
}