Compare commits
No commits in common. "0b87cad339bcb0e26e6fd33189a61cab6adb41ea" and "02baf6d07241ab8e0f13f6cbc89fcc2203a1535d" have entirely different histories.
0b87cad339
...
02baf6d072
@ -391,16 +391,6 @@
|
|||||||
"key_code": "escape"
|
"key_code": "escape"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"from": {
|
|
||||||
"key_code": "left_command"
|
|
||||||
},
|
|
||||||
"to": [
|
|
||||||
{
|
|
||||||
"key_code": "right_command"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"virtual_hid_keyboard": {
|
"virtual_hid_keyboard": {
|
||||||
|
@ -17,6 +17,23 @@
|
|||||||
;; UTF-8
|
;; UTF-8
|
||||||
(set-language-environment "UTF-8")
|
(set-language-environment "UTF-8")
|
||||||
|
|
||||||
|
;; Packages list refresh
|
||||||
|
(when (not package-archive-contents)
|
||||||
|
(package-refresh-contents))
|
||||||
|
|
||||||
|
;; Auto Package Update
|
||||||
|
(use-package auto-package-update
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(setq
|
||||||
|
auto-package-update-delete-old-verions t
|
||||||
|
auto-package-update-interval 5
|
||||||
|
)
|
||||||
|
(auto-package-update-maybe)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;; Remove welcome screen
|
;; Remove welcome screen
|
||||||
(setq inhibit-startup-screen t)
|
(setq inhibit-startup-screen t)
|
||||||
|
|
||||||
@ -37,24 +54,6 @@
|
|||||||
(package-install 'use-package)
|
(package-install 'use-package)
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Packages list refresh
|
|
||||||
(when (not package-archive-contents)
|
|
||||||
(package-refresh-contents))
|
|
||||||
|
|
||||||
;; Auto Package Update
|
|
||||||
(use-package auto-package-update
|
|
||||||
:ensure t
|
|
||||||
:config
|
|
||||||
(progn
|
|
||||||
(setq
|
|
||||||
auto-package-update-delete-old-verions t
|
|
||||||
auto-package-update-interval 5
|
|
||||||
)
|
|
||||||
(auto-package-update-maybe)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
;; Set path to store "custom-set"
|
;; Set path to store "custom-set"
|
||||||
(setq custom-file "~/.emacs.d/emacs-custom.el")
|
(setq custom-file "~/.emacs.d/emacs-custom.el")
|
||||||
|
|
||||||
@ -105,13 +104,7 @@
|
|||||||
)
|
)
|
||||||
:config
|
:config
|
||||||
(amx-mode t)
|
(amx-mode t)
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Counsel
|
|
||||||
(use-package counsel
|
|
||||||
:ensure t
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; Custom theme
|
;; Custom theme
|
||||||
@ -142,6 +135,15 @@
|
|||||||
(message "Monz not available; not configuring") )
|
(message "Monz not available; not configuring") )
|
||||||
(setq default-input-method "japanese-mozc")
|
(setq default-input-method "japanese-mozc")
|
||||||
|
|
||||||
|
;; Enable Smex
|
||||||
|
(use-package smex
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(smex-initialize)
|
||||||
|
:bind
|
||||||
|
("M-x" . smex)
|
||||||
|
)
|
||||||
|
|
||||||
;; reveal dependency
|
;; reveal dependency
|
||||||
(use-package htmlize
|
(use-package htmlize
|
||||||
:ensure t
|
:ensure t
|
||||||
@ -193,7 +195,7 @@
|
|||||||
(defun rc/get-default-font ()
|
(defun rc/get-default-font ()
|
||||||
(cond
|
(cond
|
||||||
((eq system-type 'windows-nt) "Consolas-13")
|
((eq system-type 'windows-nt) "Consolas-13")
|
||||||
((eq system-type 'gnu/linux) "xos4 Terminus (TTF) Medium 16")))
|
((eq system-type 'gnu/linux) "xos4 Terminus Bold 16")))
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
||||||
|
|
||||||
@ -470,8 +472,6 @@
|
|||||||
:config (treemacs-set-scope-type 'Perspectives))
|
:config (treemacs-set-scope-type 'Perspectives))
|
||||||
|
|
||||||
;; Python
|
;; Python
|
||||||
(setq python-shell-interpreter "python3")
|
|
||||||
(setq py-python-command "/usr/bin/python3")
|
|
||||||
(use-package company-jedi
|
(use-package company-jedi
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
|
Loading…
Reference in New Issue
Block a user