I enable them by pressing: M-x linum-mode. How can I “translate” that into my.emacs file in order to enable it automatically every time I open EMACS?
I enable them by pressing: M-x linum-mode . How can I translate that into
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.
Drop
(global-linum-mode t)into your.emacsif you want it for every buffer. Otherwise, you can add a function to the appropriate hook of modes you’re interested in to enable it for just that mode.You should really read though the manual like I suggested in the last question of yours that I answered. 😉