Using Counters.Counter for TokenIDs

I'm developing a smart contract and had a question about Counters.counter keeping track of the tokenIDs when mint occurs. I deployed my smart contract on testnet and minted an NFT, and I noticed the token ID was 0. Is it possible to skip 0 and start my counter at 1? My reasoning for wanting to start the token ID at 1 is simply to have tokenID 1 to match NFT #1 in my collection, and so on.

Can I just increment my counter by one in my constructor to start the TokenID at 1?

you can increase the tokenId in the constructor.