Compare commits
3 Commits
02baf6d072
...
0b87cad339
Author | SHA1 | Date | |
---|---|---|---|
0b87cad339 | |||
edadbf8a7c | |||
506cf49507 |
@ -391,6 +391,16 @@
|
|||||||
"key_code": "escape"
|
"key_code": "escape"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"from": {
|
||||||
|
"key_code": "left_command"
|
||||||
|
},
|
||||||
|
"to": [
|
||||||
|
{
|
||||||
|
"key_code": "right_command"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"virtual_hid_keyboard": {
|
"virtual_hid_keyboard": {
|
||||||
|
@ -17,23 +17,6 @@
|
|||||||
;; 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)
|
||||||
|
|
||||||
@ -54,6 +37,24 @@
|
|||||||
(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")
|
||||||
|
|
||||||
@ -104,7 +105,13 @@
|
|||||||
)
|
)
|
||||||
:config
|
:config
|
||||||
(amx-mode t)
|
(amx-mode t)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
;; Counsel
|
||||||
|
(use-package counsel
|
||||||
|
:ensure t
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; Custom theme
|
;; Custom theme
|
||||||
@ -135,15 +142,6 @@
|
|||||||
(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
|
||||||
@ -195,7 +193,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 Bold 16")))
|
((eq system-type 'gnu/linux) "xos4 Terminus (TTF) Medium 16")))
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
||||||
|
|
||||||
@ -472,6 +470,8 @@
|
|||||||
: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