fix
This commit is contained in:
6
flake.lock
generated
6
flake.lock
generated
@@ -2,11 +2,11 @@
|
|||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1750506804,
|
"lastModified": 1755615617,
|
||||||
"narHash": "sha256-VLFNc4egNjovYVxDGyBYTrvVCgDYgENp5bVi9fPTDYc=",
|
"narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4206c4cb56751df534751b058295ea61357bbbaa",
|
"rev": "20075955deac2583bb12f07151c2df830ef346b4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
# === CODE FORMATTING AND CLEANUP ===
|
# === CODE FORMATTING AND CLEANUP ===
|
||||||
web-beautify # Format and beautify web code (HTML/CSS/JS)
|
web-beautify # Format and beautify web code (HTML/CSS/JS)
|
||||||
ws-butler # Automatically clean up whitespace on save
|
ethan-wspace # Automatically clean up whitespace on save
|
||||||
|
|
||||||
# === PARENTHESES AND STRUCTURE EDITING ===
|
# === PARENTHESES AND STRUCTURE EDITING ===
|
||||||
paredit # Balanced parentheses editing for Lisp-like languages
|
paredit # Balanced parentheses editing for Lisp-like languages
|
||||||
|
|||||||
@@ -395,13 +395,15 @@ frame if FRAME is nil, and to 1 if AMT is nil."
|
|||||||
(yas-global-mode 1))
|
(yas-global-mode 1))
|
||||||
|
|
||||||
;; Clean up whitespace
|
;; Clean up whitespace
|
||||||
(use-package ws-butler
|
(use-package ethan-wspace
|
||||||
:ensure t
|
:ensure t
|
||||||
:diminish ws-butler-mode
|
:diminish ethan-wspace-mode
|
||||||
:config
|
:config
|
||||||
(ws-butler-global-mode t)
|
;; Enable globally
|
||||||
;; Keep whitespace before point when editing
|
(global-ethan-wspace-mode 1)
|
||||||
(setq ws-butler-keep-whitespace-before-point t))
|
|
||||||
|
;; Customize what to clean
|
||||||
|
(setq mode-require-final-newline nil)) ; ethan-wspace handles this
|
||||||
|
|
||||||
;; Rainbow delimiters
|
;; Rainbow delimiters
|
||||||
(use-package rainbow-delimiters)
|
(use-package rainbow-delimiters)
|
||||||
|
|||||||
Reference in New Issue
Block a user