Run iTerm2 Here listed in the context menu of the current Finder's directory, installed as a Service and can have global Keyboard shortcut
Reference : https://gist.github.com/pdanford/158d74e2026f393e953ed43ff8168ec1
Run Automator > New Service > Action > Run Apple Script
Service Received Selected Folders
in Finder
Paste this code into Run Apple Script Code Area
on run {input, parameters}
tell application "Finder" to set dir_path to quoted form of (POSIX path of (first item of (get selection as alias list) as alias))
CD_to(dir_path)
end run
on CD_to(theDir)
tell application "iTerm"
activate
set win to (create window with default profile)
set sesh to (current session of win)
tell sesh to write text "cd " & theDir & ";clear"
end tell
end CD_to
Save the service file as : iTermOpenService
Keyboard Shortcut and Service preferences pane vis Preferences > Keyboard > Shortcut, look for iTermOpenService - enable, and create a global keyboard shortcut for the service.