mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 12:21:20 +00:00
Terminal compatibility!
This commit is contained in:
parent
140e01c6e7
commit
edec73431e
2 changed files with 10 additions and 5 deletions
|
|
@ -1087,3 +1087,8 @@
|
|||
browse-url-browser-function 'browse-url-generic
|
||||
search-web-default-browser 'browse-url-generic))
|
||||
#+end_src
|
||||
* Terminal compatibility
|
||||
#+begin_src emacs-lisp
|
||||
(global-set-key (kbd "M-[ emacs-C-SPC") #'set-mark-command)
|
||||
(global-set-key (kbd "M-[ emacs-C-/") #'undo)
|
||||
#+end_src
|
||||
|
|
|
|||
|
|
@ -136,11 +136,11 @@
|
|||
(setq projectile-require-project-root t)
|
||||
(setq projectile-indexing-method 'hybrid)
|
||||
(setq projectile-auto-update-cache nil)
|
||||
(global-set-key (kbd (if (and (not (daemonp))
|
||||
(null window-system))
|
||||
"C-c ."
|
||||
"C-c C-."))
|
||||
'projectile-command-map))
|
||||
(if (and (not (daemonp))
|
||||
(null window-system))
|
||||
(global-set-key "C-c ." 'projectile-command-map)
|
||||
(global-set-key "C-c C-." 'projectile-command-map)
|
||||
(global-set-key (kbd "C-c M-[ emacs-C-.") 'projectile-command-map)))
|
||||
:config
|
||||
(projectile-mode)
|
||||
(add-to-list 'projectile-globally-ignored-directories
|
||||
|
|
|
|||
Loading…
Reference in a new issue