mirror of https://tildegit.org/ben/dotfiles
i guess we need to try out emacs
parent
ed65973816
commit
54ed1fc297
|
@ -2,3 +2,6 @@
|
||||||
path = fish/.config/fish/nvm-wrapper
|
path = fish/.config/fish/nvm-wrapper
|
||||||
url = https://github.com/passcod/nvm-fish-wrapper
|
url = https://github.com/passcod/nvm-fish-wrapper
|
||||||
|
|
||||||
|
[submodule "emacs/.emacs.d/evil"]
|
||||||
|
path = emacs/.emacs.d/evil
|
||||||
|
url = https://github.com/emacs-evil/evil
|
||||||
|
|
9
Makefile
9
Makefile
|
@ -16,7 +16,7 @@ endif
|
||||||
install:
|
install:
|
||||||
@make $(UNAME)
|
@make $(UNAME)
|
||||||
|
|
||||||
Linux: bash fish git mutt byobu weechat vim nvim gnupg bin
|
Linux: bash fish git mutt byobu weechat vim nvim gnupg bin emacs
|
||||||
Windows: bash git vim
|
Windows: bash git vim
|
||||||
Other: bash git vim
|
Other: bash git vim
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ clean:
|
||||||
stow -t "$$HOME" -D weechat
|
stow -t "$$HOME" -D weechat
|
||||||
stow -t "$$HOME" -D gnupg
|
stow -t "$$HOME" -D gnupg
|
||||||
stow -t "$$HOME" -D bin
|
stow -t "$$HOME" -D bin
|
||||||
|
stow -t "$$HOME" -D emacs
|
||||||
|
|
||||||
bash:
|
bash:
|
||||||
@printf "$(YELLOW)--- bash -----------------------------------------------\n$(RESET)"
|
@printf "$(YELLOW)--- bash -----------------------------------------------\n$(RESET)"
|
||||||
|
@ -76,6 +77,10 @@ bin:
|
||||||
@printf "$(YELLOW)--- bin ------------------------------------------------\n$(RESET)"
|
@printf "$(YELLOW)--- bin ------------------------------------------------\n$(RESET)"
|
||||||
stow -t "$$HOME" bin
|
stow -t "$$HOME" bin
|
||||||
|
|
||||||
|
emacs:
|
||||||
|
@printf "$(YELLOW)--- emacs ----------------------------------------------\n$(RESET)"
|
||||||
|
git submodule update --init -- emacs/.emacs.d/evil
|
||||||
|
stow -t "$$HOME" emacs
|
||||||
|
|
||||||
.PHONY: bash fish git vim nvim mutt byobu weechat gnupg bin clean install Windows Linux Other
|
.PHONY: bash fish git vim nvim mutt byobu weechat gnupg bin emacs clean install Windows Linux Other
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
(add-to-list 'load-path "~/.emacs.d/evil")
|
||||||
|
(require 'evil)
|
||||||
|
(evil-mode 1)
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 6fde982d731e2cc4e5f6bded6f8955ab2daee3b7
|
Loading…
Reference in New Issue