Monky?
This commit is contained in:
parent
89de332365
commit
6c34e9b91e
3 changed files with 46 additions and 1 deletions
|
|
@ -45,6 +45,7 @@
|
|||
'(js2-bounce-indent-p t)
|
||||
'(js2-strict-trailing-comma-warning nil)
|
||||
'(make-backup-files nil)
|
||||
'(monky-process-type (quote cmdserver))
|
||||
'(mouse-buffer-menu-mode-mult 0)
|
||||
'(omnisharp-server-executable-path nil)
|
||||
'(org-export-backends (quote (ascii html icalendar latex md odt)))
|
||||
|
|
@ -57,7 +58,7 @@
|
|||
((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(## esup lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-solarized color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky)))
|
||||
(vc-hgcmd lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-solarized color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky)))
|
||||
'(reb-re-syntax (quote string))
|
||||
'(rmail-mail-new-frame t)
|
||||
'(safe-local-variable-values
|
||||
|
|
|
|||
|
|
@ -788,6 +788,19 @@
|
|||
(global-set-key (kbd "C-x g") 'magit-status)
|
||||
|
||||
|
||||
;; =================================================================
|
||||
;; Mercurial stuff
|
||||
;; =================================================================
|
||||
;; I remove Hg from VC-mode because it is SO SLOW.
|
||||
(setq vc-handled-backends (remove 'Hg vc-handled-backends))
|
||||
;; But I have monky enabled so I can use it instead.
|
||||
(use-package monky
|
||||
:ensure
|
||||
:config
|
||||
(setq monky-process-type 'cmdserver)
|
||||
:bind
|
||||
("C-x h" . monky-status))
|
||||
|
||||
;; =================================================================
|
||||
;; Shell stuff
|
||||
;; =================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue