You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; Automatically reload files when they change on disk
(global-auto-revert-mode1)
(setq auto-revert-verbose nil)
Edit Behaviours
;; Type over selected text
(delete-selection-mode1)
;; Kill whole line
(global-set-key (kbd"H-<backspace>") 'kill-whole-line)
;; Use Cmd for movement
(global-set-key (kbd"H-<right>") (kbd"C-e")) ;; End of line
(global-set-key (kbd"H-<left>") (kbd"C-a")) ;; Beginning of line;; Kills the current buffer without displaying the annoying menu.;; A confirmation will be asked for, if the buffer has been modified
(global-set-key (kbd"C-x k") 'kill-this-buffer)
;; Remove trailing whitespace before saving
(add-hook'before-save-hook'delete-trailing-whitespace)