Skip to content

Instantly share code, notes, and snippets.

@aodag
Created October 11, 2020 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aodag/fbb86f9e3370c104adeef9b35ea92782 to your computer and use it in GitHub Desktop.
Save aodag/fbb86f9e3370c104adeef9b35ea92782 to your computer and use it in GitHub Desktop.
(leaf *preferences
:config
(setq custom-file "~/.emacs-custom.el")
(setq visible-bell t)
(load custom-file)
(menu-bar-mode -1)
(tool-bar-mode -1)
(set-face-attribute 'default nil :family "Noto Sans Mono" :height 140)
(load-theme 'tango-dark t))
(leaf skk
:ensure ddskk
:bind
(("C-x C-j" . skk-mode)
("C-x j" . skk-mode))
:custom ((default-input-method . "japanese-skk")))
(leaf *git
:config
(leaf magit
:ensure t)
(leaf git-gutter
:ensure t
:config
(global-git-gutter-mode t)))
(leaf *ivy
:config
(leaf counsel
:ensure t
:bind (("M-x" . counsel-M-x)
("C-x C-f" . counsel-find-file)
("C-x C-b" . counsel-buffer-or-recentf)))
(leaf swiper
:ensure t
:bind (("C-s" . swiper))))
(leaf server
:require t
:config
(unless (server-running-p)
(server-start)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment