not learning o-o first doesn't "ruin" you, any more than knowing what a goto statement is ruins you.
if you don't know object-oriented code, then it is helpful to begin with c++.
this way you can write a reasonably small (console/command line) program in non-o-o style, and then ask how it might be re-written in o-o style.
seeing how both programs are different but are written to do the same thing is something I found very illuminating.
object-orienting is just a way of associating one or more variables with one or more subs/functions (methods). it's just a way of keeping code organized.
i would also warn you: object-orienting seems dumb with small programs, where you can remember what all the different variables are and you know when they get written with valid values and can be read. o-o doesn't really get useful until you get into huge programs with thousands of variables that you cannot remember them all.
and you can abuse an o-o language like java, just by making one base class and putting ALL your variables in that.
o-o is easy once you get the hang of it tho, and if the program grows in code lines,,,, eventually you will regret that you didn't organize it better
beyond that, there's not much differences over most languages except assembly.
most languages you do the same things: create variables in types, if-then statements, do-while loops and so on. it is just a matter of the syntax of how they have to be written for different languages
for job marketability, that is a regional thing
where I am I'd say C++ and Java are good bets.
java is o-o only but with a bit of Java you can download Android Studio (it's the Android program IDE, free download from Google) and write programs for Android, which is easy to show off, as you can run it on a phone or little tablet... (easy to show off to other people)
python is mostly a web admin/webserver thing. if you wanted that.
Ada, scheme, lisp and the other niche languages,,, if you wanna. they won't get you hired most places, and they don't do anything dramatically different.