Skip to content

Instantly share code, notes, and snippets.

View nicoleruiz's full-sized avatar

Nicole Ruiz nicoleruiz

  • Salt Lake City, Utah
View GitHub Profile
@szydan
szydan / gist:b225749445b3602083ed
Last active June 4, 2024 19:34
<U+FEFF> character showing up in files. How to remove them?
1) In your terminal, open the file using vim:
vim file_name
2) Remove all BOM characters:
:set nobomb
3) Save the file:
:wq