Emacs! Magit + evil mode

This commit is contained in:
Anthony Cicchetti 2020-03-11 10:52:01 -04:00
parent d46906d914
commit c7092821aa
5 changed files with 41 additions and 25 deletions

View file

@ -1,25 +0,0 @@
(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
(add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)
;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
(package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages (quote (evil magit))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(require 'evil)
(evil-mode 1)

24
emacs/init.el Normal file
View file

@ -0,0 +1,24 @@
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages (quote (evil-magit evil magit))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(require 'evil)
(evil-mode 1)
(require 'fringe)
(set-fringe-mode nil)

View file

@ -5,6 +5,8 @@
- dev_machine == true
- import_role:
name: neovim
- import_role:
name: emacs
- import_role:
name: rust
vars:

View file

@ -0,0 +1,2 @@
---
dev_machine: yes

View file

@ -0,0 +1,13 @@
---
- name: Ensure emacs config directory exists
file:
path: ~/.emacs.d
state: directory
- name: Symlink init.el
file:
src: ~/.dotfiles/emacs/init.el
dest: ~/.emacs.d/init.el
state: link
force: yes