You could use semi-brute force: simply compute rows $0$ to $2018$ of Pascal's triangle mod $13$, and count the $0$'s in row $2018$. In Maple:
A[0]:= [1];
for r from 1 to 2018 do
A[r]:= [0,op(A[r-1])]+[op(A[r-1]),0] mod 13
od:
numboccur(0, A[2018]);
EDIT: Here is the solution using Kummer's theorem. The theorem says that the exponent of prime $p$ in the factorization of ${n \choose k}$ is the number of carries in addition of $k$ and $n-k$ in base $p$. Thus in order for $n \choose k$ not to be divisible by $p$, what you need is that the base $p$ addition of $k$ and $n-k$ has no carries.
In our case, $2018$ in base $13$ is $bc3$ (where $b$ represents $11$ and $c$ represents $12$, i.e. $2018 = 3 + 12 \times 13 + 11 \times 13^2$.
If the base $13$ digits of $k$ (with possible leading $0$'s) are $k_2, k_1, k_0$, and there are no carries, then the digits of $2018-k$ must be $11-k_2$, $12-k_1$ and $3-k_0$. There are $12$ possibilities for $k_2$ ($0$ to $11$), $13$ possibilities for $k_1$, and $4$ possibilities for $k_0$, for a total of
$12 \times 13 \times 4 = 624$ cases where ${2018\choose k}$ is not divisible by $13$. Of the $2019$ values of $k$ from $0$ to $2018$, the remaining $2019 - 624 = 1395$ will thus have ${2018 \choose k}$ divisible by $13$.