I wrote the emacs configuration file in elisp (emacs-lisp), so far so good, but when I restart emacs it comes back from scratch as if I hadn’t configured it, but the configuration file continues in .emacs.d/init.el.
So I don’t know what else to do, here’s the configuration code:
(setq inhibit-startup-message t)
(setq visible-bell t) ; Alertas
(setq initial-buffer-choice 'debmx-new-buffer)
(setq initial-major-mode 'prog-mode)
(set-fringe-mode 15)
(load-theme 'tango-dark t) ;
(global-display-line-numbers-mode t)
(column-number-mode t)
(global-hl-line-mode t)
(global-visual-line-mode t)
(setq backup-directory-alist '(("." . "~/saves")))
(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
(tooltip-mode -1)
I reviewed all the code, rewrote it twice, uninstalled emacs and installed it again, I looked to see if it had another initialization file but I saw that it didn’t…
New contributor
Bruno Ciccarino is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.