Compare commits

...

4 Commits

Author SHA1 Message Date
eacc765fc9 enable eldoc and line numbers 2026-06-04 15:46:09 -04:00
c4ce8f1417 update gitignore 2026-05-22 09:14:34 -04:00
d35693b7d3 add utils.el 2026-05-22 09:13:20 -04:00
02ed88ae45 allow all commands for multicursors 2026-05-21 15:40:31 -04:00
3 changed files with 24 additions and 4 deletions

5
.gitignore vendored
View File

@@ -1,2 +1,3 @@
eln-cache
elpa
*
!*.el
!user-lisp

View File

@@ -24,6 +24,8 @@
(keymap-global-set "C-c e i" #'hgh/edit-init-file)
(keymap-global-set "C-," #'hgh/duplicate-dwim)
(keymap-global-set "C-h h" #'eldoc)
(setq
custom-file "~/.emacs.d/custom.el"
make-backup-files nil
@@ -46,6 +48,8 @@
(tool-bar-mode -1)
(scroll-bar-mode -1)
(global-hl-line-mode 1)
(global-eldoc-mode 1)
(global-display-line-numbers-mode 1)
(defun hgh/untabify-buffer ()
(interactive)

15
utils.el Normal file
View File

@@ -0,0 +1,15 @@
;; -*- lexical-binding: t; -*-
(defun hgh/edit-init-file ()
(interactive)
(find-file user-init-file))
(defun hgh/duplicate-dwim ()
(interactive)
(duplicate-dwim)
(next-line))
(defun hgh/set-bar-cursor(&rest args)
(setq-local cursor-type 'bar))
(defun hgh/set-box-cursor(&rest args)
(setq-local cursor-type 'box))