New terminus font, and hide dotfiles in dired (press . to show them again)
This commit is contained in:
parent
1883f0b8cf
commit
6c09361a35
1 changed files with 25 additions and 7 deletions
28
config.org
28
config.org
|
@ -146,7 +146,7 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
(scroll-bar-mode -1)
|
||||
(tool-bar-mode -1)
|
||||
(menu-bar-mode -1)
|
||||
(set-frame-font "Terminus 14" nil t)
|
||||
(set-frame-font "Terminus 19" nil t)
|
||||
(load-file "~/.emacs.d/markup.el")
|
||||
(use-package smex
|
||||
:ensure t
|
||||
|
@ -402,7 +402,7 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
(setq directory "~/.emacs.d/elpa/weechat-20190520.1551/Makefile")
|
||||
|
||||
(if (file-exists-p directory)
|
||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551")(require 'weechat)))
|
||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551")(require 'weechat)))
|
||||
#+END_SRC
|
||||
** Tree
|
||||
Emacs sidebar. soykafy but it works
|
||||
|
@ -431,9 +431,29 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
to fallback to hunspell. which does the same.
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defvar ispell-program-name "hunspell") ;; Or whatever you use
|
||||
;; (ispell, aspell...)
|
||||
;; (ispell, aspell...)
|
||||
|
||||
#+END_SRC
|
||||
** Dired
|
||||
Ahhh, the emacs file browser, better than ranger and others...
|
||||
|
||||
Hide dotfiles:
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
||||
(use-package dired-hide-dotfiles
|
||||
:ensure t
|
||||
:init
|
||||
|
||||
(defun my-dired-mode-hook ()
|
||||
"My `dired' mode hook."
|
||||
;; To hide dot-files by default
|
||||
(dired-hide-dotfiles-mode)
|
||||
|
||||
;; To toggle hiding
|
||||
(define-key dired-mode-map "." #'dired-hide-dotfiles-mode))
|
||||
|
||||
(add-hook 'dired-mode-hook #'my-dired-mode-hook))
|
||||
#+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
|
||||
|
@ -481,5 +501,3 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
* Screenshot
|
||||
|
||||
[[./screenshot.png]]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue