To sort a tab-separated file by the 1st column:
export LC_COLLATE=C sort -t $'\t' -k1,1 enwiki_keyvalue.txt
Wiki: Home