Emacs work?
This commit is contained in:
parent
388573e7bb
commit
35cdffe3f4
2 changed files with 10 additions and 2 deletions
|
@ -2,14 +2,16 @@
|
|||
(add-to-list 'package-archives
|
||||
'("melpa" . "https://melpa.org/packages/") t)
|
||||
(package-initialize)
|
||||
|
||||
(package-refresh-contents)
|
||||
|
||||
(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))))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(auto-complete-distel ## auto-complete 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.
|
||||
|
@ -17,7 +19,12 @@
|
|||
;; If there is more than one, they won't work right.
|
||||
)
|
||||
|
||||
(require 'auto-complete)
|
||||
(global-auto-complete-mode t)
|
||||
|
||||
(require 'evil)
|
||||
(define-key evil-normal-state-map (kbd "C-k") 'evil-scroll-up)
|
||||
(define-key evil-normal-state-map (kbd "C-j") 'evil-scroll-down)
|
||||
(evil-mode 1)
|
||||
|
||||
(require 'fringe)
|
||||
|
|
|
@ -48,6 +48,7 @@ else
|
|||
fi
|
||||
|
||||
alias exa="exa -l --git"
|
||||
alias edit='emacs'
|
||||
|
||||
function dt() {
|
||||
local session_name
|
||||
|
|
Loading…
Add table
Reference in a new issue