1
0

improve emacs

This commit is contained in:
2025-07-08 19:43:00 -07:00
parent 11332b71e2
commit ee9aa036e2

View File

@@ -44,8 +44,8 @@
# === SEARCH AND FILE UTILITIES === # === SEARCH AND FILE UTILITIES ===
rg # Ripgrep searcher integration for fast text search rg # Ripgrep searcher integration for fast text search
diredfl diredfl # Enhanced font-locking for dired mode
dired-ranger dired-ranger # File operations with copy/move/paste semantics
# === TEXT COMPLETION AND PRODUCTIVITY === # === TEXT COMPLETION AND PRODUCTIVITY ===
company # Text completion framework company # Text completion framework
@@ -96,7 +96,7 @@
# === VISUAL THEMES === # === VISUAL THEMES ===
grandshell-theme # Dark theme with good contrast grandshell-theme # Dark theme with good contrast
leuven-theme # Light theme designed for readability leuven-theme # Light theme designed for readability
# === TREE-SITTER GRAMMARS === # === TREE-SITTER GRAMMARS ===
# Modern syntax highlighting and parsing using tree-sitter # Modern syntax highlighting and parsing using tree-sitter
@@ -112,13 +112,14 @@
mermaid-ts-mode # Mermaid diagram syntax with tree-sitter mermaid-ts-mode # Mermaid diagram syntax with tree-sitter
scala-ts-mode # Scala with tree-sitter (alternative to scala-mode) scala-ts-mode # Scala with tree-sitter (alternative to scala-mode)
swift-ts-mode # Swift programming with tree-sitter swift-ts-mode # Swift programming with tree-sitter
#frame-cmds
#frame-fns
#sourcepair
#zoom-frm
]; ];
extraConfig = builtins.readFile ./emacs/custom.el; extraConfig = builtins.readFile ./emacs/custom.el;
}; };
# System packages required by various emacs packages
home.packages = with pkgs; [
# Search and file utilities
ripgrep # Required for rg package
];
} }