I know that “C-u 80 C-x f” sets the fill width 80, and M-q adjusts it.
How to make it default? I mean, how to make width 80 deafault for fill width?
I know that C-u 80 C-x f sets the fill width 80, and M-q
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your .emacs place
(setq-default fill-column 80)Or you can just use M-x customize-variable on fill-column, and it will set it and save it for you using the standard customize interface.