Create service emacs.service and add hotkey for my-emacsclient.sh. Example:
- sh -c “my-emacsclient.sh”
(let ((normal-gc-cons-threshold (* 20 1024 1024))
(init-gc-cons-threshold (* 128 1024 1024)))
(setq gc-cons-threshold init-gc-cons-threshold)
(add-hook 'emacs-startup-hook
(lambda ()
(setq gc-cons-threshold normal-gc-cons-threshold))))
(setq read-process-output-max (* 1024 1024))
(package-initialize)
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
(setq frame-title-format
'("%b@" (:eval (or (file-remote-p default-directory 'host) system-name)) " — Emacs"))
(setq inhibit-splash-screen t)
(setq ingibit-startup-message t)
Show-paren-mode allows one to see matching pairs of parentheses and other characters. When point is on the opening character of one of the paired characters, the other is highlighted. When the point is after the closing character of one of the paired characters, the other is highlighted.
(show-paren-mode 1)
(setq show-paren-style 'expression)
Electric Pair mode, provides a way to easily insert matching delimiters: parentheses, braces, brackets, etc. Whenever you insert an opening delimiter, the matching closing delimiter is automatically inserted as well, leaving point between the two. Conversely, when you insert a closing delimiter over an existing one, no insertion takes places, and that position is simply skipped over. Electric Indent mode is a global minor mode that automatically indents the line after every RET you type.
(electric-pair-mode 1)
(electric-indent-mode 1)
Delete Selection mode lets you treat an Emacs region much like a typical text selection outside of Emacs: You can replace the active region just by typing text, and you can delete the selected text just by hitting the Backspace key.
(delete-selection-mode t)
(tooltip-mode -1)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(blink-cursor-mode nil)
(setq ring-bell-function 'ignore)
(setq display-time-default-load-average nil)
(setq word-wrap t)
(global-visual-line-mode t)
(global-set-key (kbd "RET") 'newline-and-indent)
cua-mode sets up key bindings that are compatible with the Common User Access (CUA) system used in many other applications.
(cua-mode t)
(setq select-enable-clipboard t)
For most files, the variable make-backup-files determines whether to make backup files. On most operating systems, its default value is t, so that Emacs does write backup files.
(setq make-backup-files nil)
(setq mouse-wheel-scroll-amount '(3 ((shift) . 3)))
(setq mouse-wheel-progressive-speed nil)
(setq mouse-wheel-follow-mouse 't)
(use-package hl-line
:ensure t
:hook ((prog-mode org-mode) . hl-line-mode))
The ef-themes are a collection of light and dark themes for GNU Emacs whose goal is to provide colorful (“pretty”) yet legible options for users who want something with a bit more flair than the modus-themes.
(use-package ef-themes
:ensure t
:config
(load-theme 'ef-trio-light t))
This package offers a minor mode which make emacs scroll smoothly. It keeps the point away from the top and bottom of the current buffer’s window in order to keep lines of context around the point visible as much as possible, whilst minimising the frequency of sudden scroll jumps which are visually confusing.
(use-package smooth-scrolling
:ensure t
:init
(smooth-scrolling-mode 1))
Highlights delimiters such as parentheses, brackets or braces according to their depth. Each successive level is highlighted in a different color. This makes it easy to spot matching delimiters, orient yourself in the code, and tell which statements are at a given depth.
(use-package rainbow-delimiters
:ensure t
:hook
(prog-mode . rainbow-delimiters-mode))
(use-package display-line-numbers
:ensure t
:config
(setq-default display-line-numbers-type 'absolute)
:hook
((prog-mode conf-mode) . display-line-numbers-mode))
This package implements hiding or abbreviation of the mode line displays (lighters) of minor-modes.
(use-package diminish
:ensure t)
Minor mode for Emacs that displays the key bindings following your currently entered incomplete command (a prefix) in a popup.
(use-package which-key
:ensure t
:init
(which-key-mode)
:diminish which-key-mode)
Projectile is a project interaction library for Emacs. Its goal is to provide a nice set of features operating on a project level without introducing external dependencies (when feasible). This library provides easy project management and navigation. The concept of a project is pretty basic - just a folder containing some special file (e.g. a VCS marker or a project descriptor file like pom.xml or Gemfile). Projectile will auto-detect pretty much every popular project type out of the box and you can easily extend it with additional project types.
(use-package projectile
:diminish projectile-mode
:config
(projectile-mode 1)
:custom
((projectile-completion-system 'helm))
:ensure t
:bind-keymap
("C-c p" . projectile-command-map)
:init
(when (file-directory-p "~/work/")
(setq projectile-project-search-path '("~/work"))))
Treemacs is a file and project explorer similar to NeoTree or vim’s NerdTree, but largely inspired by the Project Explorer in Eclipse. It shows the file system outlines of your projects in a simple tree layout allowing quick navigation and exploration, while also possessing basic file management utilities.
(use-package treemacs
:ensure t
:init
(define-key treemacs-mode-map [mouse-1] #'treemacs-single-click-expand-action)
:bind
("<f5>" . treemacs))
Projectile integration for treemacs.
(use-package treemacs-projectile
:ensure t)
Helm is an Emacs framework for incremental completions and narrowing selections. It provides an easy-to-use API for developers wishing to build their own Helm applications in Emacs, powerful search tools and dozens of already built-in commands providing completion to almost everything.
(use-package helm
:ensure t
:init
(setq-default helm-M-x-fuzzy-match t)
:bind
(("M-x" . helm-M-x)
("C-x C-f" . 'helm-find-files)
("C-x C-b" . 'helm-buffers-list)))
Helm UI for Projectile.
(use-package helm-projectile
:ensure t
:init
(helm-projectile-on)
:config
(setq projectile-switch-project-action 'helm-projectile))
Overrides function-key-map for preferred input-method(s) to translate input sequences to English, so we can use Emacs bindings while a non-default system layout is active.
(use-package reverse-im
:ensure t
:config
(reverse-im-activate "russian-computer"))
Make Emacs use the $PATH set up by the user’s shell.
(use-package exec-path-from-shell
:ensure t
:config
(setq exec-path-from-shell-variables '("PATH" "GOPATH" "PERL5LIB"))
:init
(when (daemonp)
(exec-path-from-shell-initialize)))
Flyspell is a minor mode that enables on-the-fly spell checking in Emacs. It is hardly intrusive. Flyspell highlights incorrect words as soon as they are completed or as soon as the TextCursor hits a new word.
(use-package flyspell
:ensure t
:config
(setq ispell-program-name "aspell"))
Magit is a complete text-based user interface to Git. It fills the glaring gap between the Git command-line interface and various GUIs, letting you perform trivial as well as elaborate version control tasks with just a couple of mnemonic key presses.
(use-package magit
:ensure t)
Modular in-buffer completion framework.
(use-package company
:ensure t
:init
(global-company-mode))
A client for Language Server Protocol servers.
(use-package eglot
:ensure t)
On the fly syntax checking.
(use-package flycheck
:ensure t
:diminish flycheck-mode
:config
(global-flycheck-mode))
Major mode for keeping notes, authoring documents, computational notebooks, literate programming, maintaining to-do lists, planning projects, and more — in a fast and effective plain text system.
(use-package org
:config
(setq org-confirm-babel-evaluate nil)
(setq org-html-validation-link nil)
(org-babel-do-load-languages
'org-babel-load-languages
'((org . t)
(python . t)
(perl . t)
(C . t)
(lisp . t)
(scheme . t)
(shell . t)
(emacs-lisp . t)
(js . t))))
(use-package org-modern
:hook
(org-mode . org-modern-mode))
web-beautify is a formatting package of HTML, CSS and JavaScript/JSON. For install:
- npm -g install js-beautify
(use-package web-beautify
:ensure t)
SLY is Sylvester the Cat’s Common Lisp IDE.
(use-package sly
:ensure t
:config
(setq inferior-lisp-program "sbcl"))
Geiser is a generic Emacs/Scheme interaction mode, featuring an enhanced REPL and a set of minor modes improving Emacs’ basic scheme major mode.
(use-package geiser-guile
:mode
("\\.scm\\'" . scheme-mode)
:config
(setq geiser-active-implementations '(guile)
geiser-guile-binary "guile3.0"))
Major and minor modes for Racket: edit, REPL, check-syntax, debug, profile, and more.
(use-package racket-mode
:ensure t
:hook
(racket-mode . racket-xp-mode))
(defun my-c/c++-mode-hook ()
"C/C++ mode hook."
(setq c-basic-offset 4)
(c-set-offset 'substatement-open 0)
(eglot-ensure))
(add-hook 'c-mode-hook 'my-c/c++-mode-hook)
(add-hook 'c++-mode-hook 'my-c/c++-mode-hook)
For install python lsp:
- pip install python-language-server[all]
(use-package python-mode
:hook
(python-mode . eglot-ensure))
For install golang lsp:
- go install golang.org/x/tools/gopls@latest
(defun my-go-hooks ()
"Golang hooks."
(add-hook 'before-save-hook #'eglot-format-buffer -10 t)
(eglot-ensure))
(use-package go-mode
:ensure t
:mode ("\\.go\\'" . go-mode)
:hook
(go-mode . my-go-hooks))
For install perl lsp:
- sudo yum install perl-App-cpanminus perl-AnyEvent-AIO perl-Coro
- sudo cpanm Class::Refresh
- sudo cpanm Compiler::Lexer
- sudo cpanm Hash::SafeKeys
- sudo cpanm Perl::LanguageServer
(use-package cperl-mode
:ensure t
:init (defalias 'perl-mode 'cperl-mode)
:config
(setq cperl-highlight-variables-indiscriminately t
cperl-indent-level 4
cperl-tab-always-indent nil
cperl-continued-statement-offset 0
cperl-indent-parens-as-block t
cperl-close-paren-offset -4
cperl-electric-keywords t
cperl-label-offset 0)
:hook
(cperl-mode . eglot-ensure))
Perltidy integration.
(defun perltidy-region ()
"Run perltidy on the current region."
(interactive)
(if (executable-find "perltidy")
(save-excursion
(shell-command-on-region (point) (mark) "perltidy -q" nil t))
(message "Unable to find perltidy")))
(defun perltidy-defun ()
"Run perltidy on the current defun."
(interactive)
(save-excursion (mark-defun)
(perltidy-region)))
(defun perltidy-buffer ()
"Run perltidy on current buffer."
(interactive)
(if (executable-find "perltidy")
(let ((where-i-was (point)))
(shell-command-on-region (point-min) (point-max) "perltidy -q" nil t)
(goto-char where-i-was))
(message "Unable to find perltidy")))
For install php lsp:
- curl -Lo phpactor.phar https://github.com/phpactor/phpactor/releases/latest/download/phpactor.phar
- chmod a+x phpactor.phar
- mv phpactor.phar ~.local/bin/phpactor/
(use-package php-mode
:hook
(php-mode . eglot-ensure))
HTTP library.
(use-package request
:ensure t)
This is extension to the Emacs browser eww that adds conkeror like functionality[1].
(use-package eww-lnum
:ensure t)
EWW, the Emacs Web Wowser, is a web browser package for Emacs. It allows browsing URLs within an Emacs buffer.
(use-package eww
:bind
(:map eww-mode-map
("f" . eww-lnum-follow)))
This package allows to translate the strings using Google Translate service directly from GNU Emacs.
(use-package google-translate
:ensure t
:functions (google-translate--search-tkk)
:custom
(google-translate-backend-method 'curl)
:config
(defun google-translate--search-tkk ()
"Search TKK."
(list 430675 2721866130)))
Elpher aims to provide a full-featured combination gopher and gemini client for GNU Emacs.
(use-package elpher
:ensure t)