Compare commits
3 Commits
02baf6d072
...
0b87cad339
Author | SHA1 | Date | |
---|---|---|---|
0b87cad339 | |||
edadbf8a7c | |||
506cf49507 |
@ -391,6 +391,16 @@
|
||||
"key_code": "escape"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "left_command"
|
||||
},
|
||||
"to": [
|
||||
{
|
||||
"key_code": "right_command"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"virtual_hid_keyboard": {
|
||||
|
@ -17,23 +17,6 @@
|
||||
;; 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
|
||||
(setq inhibit-startup-screen t)
|
||||
|
||||
@ -54,6 +37,24 @@
|
||||
(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"
|
||||
(setq custom-file "~/.emacs.d/emacs-custom.el")
|
||||
|
||||
@ -104,7 +105,13 @@
|
||||
)
|
||||
:config
|
||||
(amx-mode t)
|
||||
)
|
||||
)
|
||||
|
||||
;; Counsel
|
||||
(use-package counsel
|
||||
:ensure t
|
||||
)
|
||||
|
||||
|
||||
|
||||
;; Custom theme
|
||||
@ -135,15 +142,6 @@
|
||||
(message "Monz not available; not configuring") )
|
||||
(setq default-input-method "japanese-mozc")
|
||||
|
||||
;; Enable Smex
|
||||
(use-package smex
|
||||
:ensure t
|
||||
:init
|
||||
(smex-initialize)
|
||||
:bind
|
||||
("M-x" . smex)
|
||||
)
|
||||
|
||||
;; reveal dependency
|
||||
(use-package htmlize
|
||||
:ensure t
|
||||
@ -195,7 +193,7 @@
|
||||
(defun rc/get-default-font ()
|
||||
(cond
|
||||
((eq system-type 'windows-nt) "Consolas-13")
|
||||
((eq system-type 'gnu/linux) "xos4 Terminus Bold 16")))
|
||||
((eq system-type 'gnu/linux) "xos4 Terminus (TTF) Medium 16")))
|
||||
|
||||
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
||||
|
||||
@ -472,6 +470,8 @@
|
||||
:config (treemacs-set-scope-type 'Perspectives))
|
||||
|
||||
;; Python
|
||||
(setq python-shell-interpreter "python3")
|
||||
(setq py-python-command "/usr/bin/python3")
|
||||
(use-package company-jedi
|
||||
:ensure t
|
||||
:config
|
||||
|
Loading…
Reference in New Issue
Block a user