Added weechat and fixed startup warning in emacs 28 and 27
This commit is contained in:
parent
93b2fa2259
commit
15562685d2
1 changed files with 21 additions and 13 deletions
16
config.org
16
config.org
|
@ -42,8 +42,8 @@
|
|||
melpa, where you get the packages. This also installs use-package,
|
||||
and other packages I use.
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(require 'package)
|
||||
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
|
||||
(require 'package)
|
||||
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
|
||||
(not (gnutls-available-p))))
|
||||
(proto (if no-ssl "http" "https")))
|
||||
;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired
|
||||
|
@ -52,10 +52,12 @@
|
|||
(when (< emacs-major-version 24)
|
||||
;; For important compatibility libraries like cl-lib
|
||||
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
|
||||
(unless (package-installed-p 'use-package)
|
||||
|
||||
(if (< emacs-major-version 27)
|
||||
(package-initialize))
|
||||
(unless (package-installed-p 'use-package)
|
||||
(package-refresh-contents)
|
||||
(package-install 'use-package))
|
||||
|
||||
#+END_SRC
|
||||
** Generic packages
|
||||
Here I install some packages that don't need configuration.
|
||||
|
@ -399,6 +401,12 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
(kill-word 1))
|
||||
(global-set-key (kbd "M-C-k") 'kill-inner-word)
|
||||
#+END_SRC
|
||||
** Weechat
|
||||
erc sucks, irc sucks, weechat does not. (see [[https://github.com/bqv/weechat.el/tree/rx-range][this]])
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551"))
|
||||
(require 'weechat)
|
||||
#+END_SRC
|
||||
* ido
|
||||
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
|
||||
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
||||
|
|
Loading…
Add table
Reference in a new issue