Configure tramp and javascript IDE

This commit is contained in:
Maciej 2018-09-26 10:30:35 +03:00
parent d86f07a002
commit c48d9754c6
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
6 changed files with 30 additions and 7 deletions

View file

@ -1,3 +1,10 @@
;;;;;;;;; GC configuration ;;;;;;;;;;;;;;;;;;;
(setq gc-cons-threshold 50000000)
;;;;;;;;; TRAMP configuration ;;;;;;;;;;;;;;;;
(setq tramp-default-method "ssh")
;;;;;;;;; Emacs bindings ;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "RET") 'newline)
@ -34,11 +41,6 @@
(interactive)
(ansi-term "/bin/zsh" "ANSI-Term : Zsh")))
;;; Get rid of bad parts of the windows
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
;#====================== Backup config #==============================
(setq backup-directory-alist
`((".*" . "~/.emacs_backups/auto-save-list")))
@ -93,3 +95,13 @@
;; Disable meta on right alt (useful for Polish characters)
(setq ns-right-alternate-modifier nil)
;;; Get rid of bad parts of the windows
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
;;;;;;;;;;;;;;;;; Record frequency of different commands. Review them later
(require 'keyfreq)
(keyfreq-mode 1)
(keyfreq-autosave-mode 1)