This commit is contained in:
Miguel Palhas
2025-07-02 22:11:49 +01:00
parent c41f1c5c70
commit 0ba95c35e5
3 changed files with 39 additions and 4 deletions
+32 -1
View File
@@ -21,6 +21,37 @@
devenv
# bruno
zed-editor
tmux
];
programs.tmux = {
enable = true;
extraConfig = ''
setw -g mouse on
set -s extended-keys on
'';
};
home.file.".claude/settings.json".text = ''
{
"permissions": {
"allow": [
"Bash(mkdir:*)",
"Bash(rg:*)",
"Bash(chmod:*)",
"Bash(find:*)",
"Bash(rustup target:*)",
"Bash(ls:*)",
"Bash(cargo:*)",
"Bash(cp:*)",
"Bash(yarn:*)",
"Bash(sed:*)",
"Bash(gh:*)",
"Bash(git:*)",
"Bash(grep:*)",
"Bash(node:*)"
],
"defaultMode": "acceptEdits"
}
}
'';
}