emacs-config/readme
2025-09-08 20:34:20 +03:00

15 lines
346 B
Plaintext

# to use this repo
simply clone
```sh
git clone https://git.iovchinnikov.ru/ivan-igorevich/emacs-config.git ~/.emacs-ii
```
and tell emacs where to find config file and libraries
```lisp
(require 'package)
(load "~/.emacs-ii/emacs.el")
(let ((default-directory "~/.emacs-ii/emacs.d"))
(normal-top-level-add-subdirs-to-load-path))
```