Emacs things.

This commit is contained in:
Lorenzo Good 2025-12-28 20:18:45 -06:00
parent c11376bc26
commit f9592f2f94
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
3 changed files with 7 additions and 3 deletions

View file

@ -20,6 +20,10 @@
shellAliases = { shellAliases = {
emacs = "emacs -nw"; emacs = "emacs -nw";
estart = "systemctl --user start emacs";
estop = "systemctl --user stop emacs";
erestart = "systemctl --user restart emacs";
ec = "emacsclient -nw";
vi = "nvim"; vi = "nvim";
vim = "nvim"; vim = "nvim";
tl = "tmux list-sessions"; tl = "tmux list-sessions";

View file

@ -199,7 +199,7 @@ local function init()
ignore_install = {}, ignore_install = {},
ensure_installed = {}, ensure_installed = {},
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true }, indent = { enable = false },
modules = {}, modules = {},
rainbow = { enable = true }, rainbow = { enable = true },
sync_install = false, sync_install = false,

4
x
View file

@ -4,8 +4,8 @@ function switch() {
home-manager switch --flake .#$1 home-manager switch --flake .#$1
} }
if [[ -n $1 ]]; then if [[ -n $1 ]]; then
switch $1 switch $1
else else
switch default switch default
fi fi