reformat various files, removing tabs
This commit is contained in:
parent
f3a6bfa427
commit
958780da2d
|
@ -20,4 +20,4 @@
|
|||
|
||||
;; TODO: figure out what these width/height numbers are exactly. they don't seem to be characters?
|
||||
(setq default-frame-alist '((width . 165)
|
||||
(height . 59)))
|
||||
(height . 59)))
|
||||
|
|
|
@ -21,8 +21,9 @@
|
|||
(use-package corfu
|
||||
:ensure t
|
||||
:hook (after-init . global-corfu-mode)
|
||||
:bind (:map corfu-map
|
||||
("<tab>" . corfu-complete))
|
||||
:bind
|
||||
( :map corfu-map
|
||||
("<tab>" . corfu-complete))
|
||||
:config
|
||||
(setq tab-always-indent 'complete)
|
||||
(setq corfu-preview-current nil)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
(use-package magit
|
||||
:ensure t
|
||||
:bind (("C-x g" . magit-status)))
|
||||
:bind
|
||||
(("C-x g" . magit-status)))
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
"Return a new file path for a given file path.
|
||||
If the new path's directory does not exist, this will create them."
|
||||
(let* ((backup-root-dir "~/.emacs.d/backup/")
|
||||
(file-path (replace-regexp-in-string "[A-Za-z]:" "" fpath)) ; remove Windows drive letter
|
||||
(backup-file-path (replace-regexp-in-string "//" "/" (concat backup-root-dir file-path "~"))))
|
||||
(file-path (replace-regexp-in-string "[A-Za-z]:" "" fpath)) ; remove Windows drive letter
|
||||
(backup-file-path (replace-regexp-in-string "//" "/" (concat backup-root-dir file-path "~"))))
|
||||
(make-directory (file-name-directory backup-file-path)
|
||||
(file-name-directory backup-file-path))
|
||||
(file-name-directory backup-file-path))
|
||||
backup-file-path))
|
||||
(setopt make-backup-file-name-function 'get-emacsd-backup-file-name)
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
|
||||
;; do not show warnings when installing packages
|
||||
(add-to-list 'display-buffer-alist
|
||||
'("\\`\\*\\(Warnings\\|Compile-Log\\)\\*\\'"
|
||||
(display-buffer-no-window)
|
||||
(allow-no-window . t)))
|
||||
'("\\`\\*\\(Warnings\\|Compile-Log\\)\\*\\'"
|
||||
(display-buffer-no-window)
|
||||
(allow-no-window . t)))
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
(add-hook 'text-mode-hook 'visual-line-mode)
|
||||
|
||||
(dolist (hook '(text-mode-hook
|
||||
prog-mode-hook))
|
||||
prog-mode-hook))
|
||||
(add-hook hook 'hl-line-mode))
|
||||
|
||||
(setopt x-underline-at-descent-line nil)
|
||||
|
@ -77,10 +77,11 @@
|
|||
|
||||
(use-package helpful
|
||||
:ensure t
|
||||
:bind (([remap describe-function] . helpful-callable)
|
||||
([remap describe-variable] . helpful-variable)
|
||||
([remap describe-key] . helpful-key)
|
||||
([remap describe-command] . helpful-command)))
|
||||
:bind
|
||||
(([remap describe-function] . helpful-callable)
|
||||
([remap describe-variable] . helpful-variable)
|
||||
([remap describe-key] . helpful-key)
|
||||
([remap describe-command] . helpful-command)))
|
||||
|
||||
(use-package kind-icon
|
||||
:ensure t
|
||||
|
|
Loading…
Reference in a new issue