neovim configuration using rocks.nvim plugin manager

feat(queries): add go sql injection queries

+19
+19
after/queries/go/injections.scm
··· 1 + ; extends 2 + 3 + ((comment) @comment 4 + . (_ (raw_string_literal) @injection.content) 5 + (#match? comment "/\/\* sql \*\//") 6 + (#offset! @injection.content 0 1 0 -1) 7 + (#set! injection.language "sql")) 8 + (call_expression 9 + function: (_) @_function 10 + (#any-of? @_function 11 + "db.Exec" "db.Query") 12 + arguments: (argument_list 13 + . 14 + [ 15 + (raw_string_literal) 16 + (interpreted_string_literal) 17 + ] @injection.content 18 + (#offset! @injection.content 0 1 0 -1) 19 + (#set! injection.language "sql")))