2026-02-11 12:00:49 -05:00
2025-09-08 20:34:20 +03:00
2026-02-11 12:00:49 -05:00

to use this repo

  1. after installing emacs do some useful terminal magic
echo alias emacs=\'emacs -nw\' >> ~/.bashrc
source ~/.bashrc

this will help running emacs in terminal without "no gui found" errors

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

if spellcheck needed

download dictionaries and install them

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
Description
No description provided
Readme 4.5 MiB
Languages
Emacs Lisp 81.1%
Roff 15.9%
TeX 1.7%
C 0.9%
YASnippet 0.3%