From df350dd796dc70a39ee0d2d0d3deeeb232f83a69 Mon Sep 17 00:00:00 2001 From: ivan-igorevich Date: Fri, 26 Dec 2025 22:34:28 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20readme.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme | 14 -------------- readme.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 14 deletions(-) delete mode 100644 readme create mode 100644 readme.md diff --git a/readme b/readme deleted file mode 100644 index 22dc7ff..0000000 --- a/readme +++ /dev/null @@ -1,14 +0,0 @@ -# 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)) -``` diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..2ca91fa --- /dev/null +++ b/readme.md @@ -0,0 +1,28 @@ +# 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)) +``` + +# download dictionaries +```sh +mkdir -p /tmp/nbdict && cd /tmp/nbdict +wget ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-0.99f7-1.tar.bz2 +tar -jxf aspell6-ru-0.99f7-1.tar.bz2 +cd aspell6-ru-0.99f7-1/ +./configure +# Здесь мы должны увидеть что-то типа этого: +# Finding Dictionary file location ... /usr/lib/aspell +# Finding Data file location ... /usr/lib/aspell +make +sudo make install +```