-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable rounded corners for zellij * Set default zellij layout to compact * Setup infrastructure to create globally available custom layouts for zellij * Update some git aliases * Update some gh aliases * Set helix as default editor * Remove alias for bat * Improve helix config - Setup different cursor shapes for different modes to identify them more easily - Disable mouse related stuff - Setup ruler - Disable movement keys when in insert modes * Fix gh alias
- Loading branch information
1 parent
57f4a31
commit 1b86b5b
Showing
6 changed files
with
41 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
{ pkgs, ... }: | ||
{ ... }: | ||
|
||
{ | ||
programs = { | ||
bat.enable = true; | ||
|
||
zsh.shellAliases."cat" = "${pkgs.bat}/bin/bat"; | ||
}; | ||
programs.bat.enable = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ config, pkgs, ... }: | ||
{ config, ... }: | ||
|
||
{ | ||
programs.git = { | ||
userName = "Francis Hamel"; | ||
userEmail = "[email protected]"; | ||
aliases = { | ||
ca = "commit --amend"; | ||
ca = "commit --amend --no-edit"; | ||
cae = "commit --amend"; | ||
cf = "commit --fixup"; | ||
fp = "fetch --prune"; | ||
pfwl = "push --force-with-lease"; | ||
ri = "rebase --interactive"; | ||
}; | ||
enable = true; | ||
extraConfig = { | ||
core.editor = "${pkgs.vscode}/bin/code --wait"; | ||
init.defaultBranch = "main"; | ||
merge.conflictstyle = "diff3"; | ||
pull.rebase = true; | ||
|
@@ -30,11 +30,13 @@ | |
gitCredentialHelper.enable = false; | ||
settings = { | ||
aliases = { | ||
"ic" = "issue create --web"; | ||
"id" = "issue develop $1 --checkout"; | ||
"il" = "issue list"; | ||
"prc" = "pr create --web --assignee @me"; | ||
"prv" = "pr view --web"; | ||
"rc" = "repo clone $1 ${config.home.homeDirectory}/src/$1"; | ||
}; | ||
editor = "${pkgs.vscode}/bin/code --wait"; | ||
git_protocol = "ssh"; | ||
}; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.