Compare commits
No commits in common. "1e9336dc031f21499d0bbe93d2dff5b8fce540a6" and "7bec9bf97072d113dac8d3a2799771f68eba50ef" have entirely different histories.
1e9336dc03
...
7bec9bf970
9 changed files with 6 additions and 33 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: CI
|
name: Prelude CI
|
||||||
on: push
|
on: push
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
|
@ -23,7 +23,6 @@
|
||||||
* The keybinding for `proced` is now enabled unconditionally.
|
* The keybinding for `proced` is now enabled unconditionally.
|
||||||
* Replace prelude-go backend with `lsp` instead of unmaintained tools.
|
* Replace prelude-go backend with `lsp` instead of unmaintained tools.
|
||||||
* Use `rust-analyzer` as language server for prelude-rust and provide nicer syntax highlighting with `tree-sitter`.
|
* Use `rust-analyzer` as language server for prelude-rust and provide nicer syntax highlighting with `tree-sitter`.
|
||||||
* Use `js2-mode` for Node.js specific `.cjs` and `.mjs` extensions.
|
|
||||||
|
|
||||||
### Bugs fixed
|
### Bugs fixed
|
||||||
|
|
||||||
|
@ -34,7 +33,6 @@
|
||||||
* Fix fall back to sample `prelude-modules.el` not working if user has installed to non-default location.
|
* Fix fall back to sample `prelude-modules.el` not working if user has installed to non-default location.
|
||||||
* Stop requiring `helm-config` since upstream has removed the module.
|
* Stop requiring `helm-config` since upstream has removed the module.
|
||||||
* Require `typescript-mode` using `prelude-require-packages` to avoid error upon inclusion in `personal/prelude-modules.el`.
|
* Require `typescript-mode` using `prelude-require-packages` to avoid error upon inclusion in `personal/prelude-modules.el`.
|
||||||
* Turn off `super-save` in `rust-mode` to prevent severe hangs during autocomplete.
|
|
||||||
|
|
||||||
## 1.1.0 (2021-02-14)
|
## 1.1.0 (2021-02-14)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
[![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)
|
[![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
[![CI](https://github.com/bbatsov/prelude/workflows/CI/badge.svg)](https://github.com/bbatsov/prelude/actions/workflows/ci.yml)
|
|
||||||
[![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/bbatsov)
|
[![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/bbatsov)
|
||||||
[![Discord](https://img.shields.io/badge/chat-on%20discord-7289da.svg?sanitize=true)](https://discord.gg/3Cf2Qpyry5)
|
|
||||||
|
|
||||||
Emacs Prelude
|
Emacs Prelude
|
||||||
=============
|
=============
|
||||||
|
|
|
@ -72,8 +72,6 @@ $ cd ~/.emacs.d
|
||||||
|
|
||||||
If you are using Windows, you should check what Emacs thinks the `~` directory is by running Emacs
|
If you are using Windows, you should check what Emacs thinks the `~` directory is by running Emacs
|
||||||
and typing `C-x d ~/<RET>`, and then adjust the command appropriately.
|
and typing `C-x d ~/<RET>`, and then adjust the command appropriately.
|
||||||
It is recommended to explicitly set HOME environment variable.
|
|
||||||
For details, please refer to [Emacs manual Windows-HOME section](https://www.gnu.org/software/emacs/manual/html_node/emacs/Windows-HOME.html)
|
|
||||||
|
|
||||||
### System-wide (site-wide)
|
### System-wide (site-wide)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
site_name: "Prelude: A sleek, modern, simple and powerful Emacs experience for everyone"
|
site_name: "Prelude: A sleek, modern, simple and powerful Emacs experience for everyone"
|
||||||
repo_url: https://github.com/bbatsov/prelude
|
repo_url: https://github.com/bbatsov/prelude
|
||||||
copyright: "Copyright (C) 2011-2024 Bozhidar Batsov and Prelude contributors"
|
copyright: "Copyright (C) 2011-2023 Bozhidar Batsov and Prelude contributors"
|
||||||
docs_dir: docs
|
docs_dir: docs
|
||||||
nav:
|
nav:
|
||||||
- Home: index.md
|
- Home: index.md
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
(require 'js2-mode)
|
(require 'js2-mode)
|
||||||
|
|
||||||
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
||||||
(add-to-list 'auto-mode-alist '("\\.[cm]js\\'" . js2-mode))
|
|
||||||
(add-to-list 'auto-mode-alist '("\\.pac\\'" . js2-mode))
|
(add-to-list 'auto-mode-alist '("\\.pac\\'" . js2-mode))
|
||||||
(add-to-list 'interpreter-mode-alist '("node" . js2-mode))
|
(add-to-list 'interpreter-mode-alist '("node" . js2-mode))
|
||||||
|
|
||||||
|
|
|
@ -48,9 +48,6 @@
|
||||||
(require 'tree-sitter)
|
(require 'tree-sitter)
|
||||||
(require 'tree-sitter-langs)
|
(require 'tree-sitter-langs)
|
||||||
|
|
||||||
(add-to-list 'super-save-predicates
|
|
||||||
(lambda () (not (eq major-mode 'rust-mode))))
|
|
||||||
|
|
||||||
(with-eval-after-load 'rust-mode
|
(with-eval-after-load 'rust-mode
|
||||||
(add-hook 'rust-mode-hook 'cargo-minor-mode)
|
(add-hook 'rust-mode-hook 'cargo-minor-mode)
|
||||||
(add-hook 'flycheck-mode-hook 'flycheck-rust-setup)
|
(add-hook 'flycheck-mode-hook 'flycheck-rust-setup)
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
;; Boston, MA 02110-1301, USA.
|
;; Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;;; Code:
|
|
||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
|
|
||||||
;; Enable vertico
|
;; Enable vertico
|
||||||
|
@ -103,6 +102,7 @@
|
||||||
("C-M-#" . consult-register)
|
("C-M-#" . consult-register)
|
||||||
;; Other custom bindings
|
;; Other custom bindings
|
||||||
("M-y" . consult-yank-pop) ;; orig. yank-pop
|
("M-y" . consult-yank-pop) ;; orig. yank-pop
|
||||||
|
("<help> a" . consult-apropos) ;; orig. apropos-command
|
||||||
;; M-g bindings (goto-map)
|
;; M-g bindings (goto-map)
|
||||||
("M-g e" . consult-compile-error)
|
("M-g e" . consult-compile-error)
|
||||||
("M-g f" . consult-flycheck)
|
("M-g f" . consult-flycheck)
|
||||||
|
@ -124,6 +124,3 @@
|
||||||
("M-s m" . consult-multi-occur)
|
("M-s m" . consult-multi-occur)
|
||||||
("M-s k" . consult-keep-lines)
|
("M-s k" . consult-keep-lines)
|
||||||
("M-s u" . consult-focus-lines)))
|
("M-s u" . consult-focus-lines)))
|
||||||
|
|
||||||
(provide 'prelude-vertico)
|
|
||||||
;;; prelude-vertico.el ends here
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
# Read the Docs configuration file for MkDocs projects
|
|
||||||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
||||||
|
|
||||||
# Required
|
|
||||||
version: 2
|
|
||||||
|
|
||||||
# Set the version of Python and other tools you might need
|
|
||||||
build:
|
|
||||||
os: ubuntu-22.04
|
|
||||||
tools:
|
|
||||||
python: "3.12"
|
|
||||||
|
|
||||||
mkdocs:
|
|
||||||
configuration: mkdocs.yml
|
|
Loading…
Reference in a new issue