forked from bbatsov/prelude
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
94 changed files
with
748 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Prelude CI | ||
on: push | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v1 | ||
- name: install emacs | ||
run: sudo apt-get update && sudo apt-get install -y emacs | ||
- name: put prelude in the right place | ||
run: ln -s $(pwd) $HOME/.emacs.d | ||
- name: load prelude | ||
run: emacs --batch --load init.el |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,5 @@ transient/ | |
var/ | ||
.cache/ | ||
.lsp-session* | ||
gotools/ | ||
eln-cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-core.el --- Emacs Prelude: Core Prelude functions. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-custom.el --- Emacs Prelude: Prelude's customizable variables. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-editor.el --- Emacs Prelude: enhanced core editing experience. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -166,6 +166,7 @@ | |
;; note - this should be after volatile-highlights is required | ||
;; add the ability to cut the current line, without marking it | ||
(require 'rect) | ||
(require 'crux) | ||
(crux-with-region-or-line kill-region) | ||
|
||
;; tramp, for sudo access | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-global-keybindings.el --- Emacs Prelude: some useful keybindings. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -46,8 +46,7 @@ | |
(global-set-key (kbd "C-^") 'crux-top-join-line) | ||
|
||
;; Start proced in a similar manner to dired | ||
(unless (eq system-type 'darwin) | ||
(global-set-key (kbd "C-x p") 'proced)) | ||
(global-set-key (kbd "C-x p") 'proced) | ||
|
||
;; Start eshell or switch to it if it's active. | ||
(global-set-key (kbd "C-x m") 'eshell) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-linux.el --- Emacs Prelude: linux specific settings. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Stanislav Arnaudov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-macos.el --- Emacs Prelude: macOS specific settings. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-mode.el --- Emacs Prelude: minor mode | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-packages.el --- Emacs Prelude: default package selection. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -70,8 +70,7 @@ | |
flycheck | ||
gist | ||
git-timemachine | ||
gitconfig-mode | ||
gitignore-mode | ||
git-modes | ||
guru-mode | ||
hl-todo | ||
imenu-anywhere | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-ui.el --- Emacs Prelude: UI optimizations and tweaks. | ||
;; | ||
;; Copyright © 2011-2021 Bozhidar Batsov | ||
;; Copyright © 2011-2022 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -83,8 +83,12 @@ | |
(load-theme prelude-theme t)) | ||
|
||
;; show available keybindings after you start typing | ||
(require 'which-key) | ||
(which-key-mode +1) | ||
;; add to hook when running as a daemon as a workaround for a | ||
;; which-key bug | ||
;; https://github.com/justbur/emacs-which-key/issues/306 | ||
(if (daemonp) | ||
(add-hook 'server-after-make-frame-hook 'which-key-mode) | ||
(which-key-mode +1)) | ||
|
||
(provide 'prelude-ui) | ||
;;; prelude-ui.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.