3
1
I am working with "text file formats" (like .md
and .tex
), as well as with "real programming languages".
I would like to have soft wrapping enabled only for a set of files, for example, .md
, .tex
, but not for .c
, .h
, .cpp
, .py
.
Now, I found that I could open my config.cson
and create the next line
"*":
"editor":
"softWrap": true
but this, unfortunately, enables soft wraps for every file and they look awkward for C, Go, Python source files.
Atom soft wraps by default all .md
files, even if the above configuration option is not included in the config.cson
file. I would like to have soft wraps for my tex files to. How can I achieve this?