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
|
||||
jobs:
|
||||
build:
|
|
@ -23,7 +23,6 @@
|
|||
* The keybinding for `proced` is now enabled unconditionally.
|
||||
* 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 `js2-mode` for Node.js specific `.cjs` and `.mjs` extensions.
|
||||
|
||||
### Bugs fixed
|
||||
|
||||
|
@ -34,7 +33,6 @@
|
|||
* 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.
|
||||
* 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,7 +1,5 @@
|
|||
[![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)
|
||||
[![Discord](https://img.shields.io/badge/chat-on%20discord-7289da.svg?sanitize=true)](https://discord.gg/3Cf2Qpyry5)
|
||||
|
||||
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
|
||||
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)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
site_name: "Prelude: A sleek, modern, simple and powerful Emacs experience for everyone"
|
||||
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
|
||||
nav:
|
||||
- Home: index.md
|
||||
|
|
|
@ -35,10 +35,9 @@
|
|||
|
||||
(require '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 'interpreter-mode-alist '("node" . js2-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.pac\\'" . js2-mode))
|
||||
(add-to-list 'interpreter-mode-alist '("node" . js2-mode))
|
||||
|
||||
(with-eval-after-load 'js2-mode
|
||||
(defun prelude-js-mode-defaults ()
|
||||
|
|
|
@ -48,9 +48,6 @@
|
|||
(require 'tree-sitter)
|
||||
(require 'tree-sitter-langs)
|
||||
|
||||
(add-to-list 'super-save-predicates
|
||||
(lambda () (not (eq major-mode 'rust-mode))))
|
||||
|
||||
(with-eval-after-load 'rust-mode
|
||||
(add-hook 'rust-mode-hook 'cargo-minor-mode)
|
||||
(add-hook 'flycheck-mode-hook 'flycheck-rust-setup)
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
;; Boston, MA 02110-1301, USA.
|
||||
|
||||
;;; Code:
|
||||
(require 'use-package)
|
||||
|
||||
;; Enable vertico
|
||||
|
@ -103,6 +102,7 @@
|
|||
("C-M-#" . consult-register)
|
||||
;; Other custom bindings
|
||||
("M-y" . consult-yank-pop) ;; orig. yank-pop
|
||||
("<help> a" . consult-apropos) ;; orig. apropos-command
|
||||
;; M-g bindings (goto-map)
|
||||
("M-g e" . consult-compile-error)
|
||||
("M-g f" . consult-flycheck)
|
||||
|
@ -124,6 +124,3 @@
|
|||
("M-s m" . consult-multi-occur)
|
||||
("M-s k" . consult-keep-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